2024-09-11T03:00:53.532 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-11T03:00:53.548 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-11T03:00:53.629 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi/7900035 branch: wip-hemanth-testing-2024-09-10-0723 description: rados/cephadm/workunits/{0-distro/centos_9.stream_runc agent/on mon_election/connectivity task/test_host_drain} email: hyelloji@redhat.com first_in_suite: false job_id: '7900035' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: wip-hemanth-testing-2024-09-10-0723 ceph: conf: global: mon election default strategy: 3 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 - CEPHADM_STRAY_HOST - CEPHADM_STRAY_DAEMON - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: 8f219c476cb4f26fc5719c661c0323719a45cb30 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 8f219c476cb4f26fc5719c661c0323719a45cb30 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: wip-hemanth-testing-2024-09-10-0723 sha1: 8f219c476cb4f26fc5719c661c0323719a45cb30 owner: scheduled_hyelloji@teuthology priority: 100 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 9167 sha1: 8f219c476cb4f26fc5719c661c0323719a45cb30 sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: wip-hemanth-testing-2024-09-10-0723 suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_8f219c476cb4f26fc5719c661c0323719a45cb30/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: 8f219c476cb4f26fc5719c661c0323719a45cb30 targets: smithi050.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKTqZEyX2dYrjdFhm/2H0+0tsZQKhGoFeHZc3oTwQwjhDxkKUbaJwvbro+/l2IXvaeNv5oBuzm8U2ODWRIakEsU= smithi120.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHlB8SDVt+Qs8hNv0P6WG5jDUYmOY2gIAvYELvQTDri+5L2+e5sMdUxQqt5KWejlTV05cky0wcvV431+g4KNZrs= smithi165.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSzx3ipOcIuMEsgzcEmMp0TiV1/F7wuhFs7AORS+h7LnRKkSRv6k7Y0RHYDdNH0jqzZj0CMd0mb5HHcrk0f9oY= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install runc nvmetcli nvme-cli -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: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-10_17:16:14 tube: smithi user: hyelloji verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-11T03:00:53.630 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_8f219c476cb4f26fc5719c661c0323719a45cb30/qa; will attempt to use it 2024-09-11T03:00:53.630 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_8f219c476cb4f26fc5719c661c0323719a45cb30/qa/tasks 2024-09-11T03:00:53.630 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-11T03:00:53.632 INFO:teuthology.task.internal:Checking packages... 2024-09-11T03:00:53.654 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '8f219c476cb4f26fc5719c661c0323719a45cb30' 2024-09-11T03:00:53.654 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-11T03:00:53.655 INFO:teuthology.packaging:ref: None 2024-09-11T03:00:53.655 INFO:teuthology.packaging:tag: None 2024-09-11T03:00:53.655 INFO:teuthology.packaging:branch: wip-hemanth-testing-2024-09-10-0723 2024-09-11T03:00:53.655 INFO:teuthology.packaging:sha1: 8f219c476cb4f26fc5719c661c0323719a45cb30 2024-09-11T03:00:53.655 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-hemanth-testing-2024-09-10-0723 2024-09-11T03:00:53.804 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-4854.g8f219c47 2024-09-11T03:00:53.805 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-11T03:00:53.812 INFO:teuthology.task.internal:no buildpackages task found 2024-09-11T03:00:53.812 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-11T03:00:53.825 INFO:teuthology.task.internal:Saving configuration 2024-09-11T03:00:53.838 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-11T03:00:53.845 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-11T03:00:53.874 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi050.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi/7900035', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-11 02:55:42.248661', 'locked_by': 'scheduled_hyelloji@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKTqZEyX2dYrjdFhm/2H0+0tsZQKhGoFeHZc3oTwQwjhDxkKUbaJwvbro+/l2IXvaeNv5oBuzm8U2ODWRIakEsU='} 2024-09-11T03:00:53.900 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi120.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi/7900035', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-11 02:55:42.245805', 'locked_by': 'scheduled_hyelloji@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHlB8SDVt+Qs8hNv0P6WG5jDUYmOY2gIAvYELvQTDri+5L2+e5sMdUxQqt5KWejlTV05cky0wcvV431+g4KNZrs='} 2024-09-11T03:00:53.931 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi165.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi/7900035', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-11 02:55:42.247557', 'locked_by': 'scheduled_hyelloji@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSzx3ipOcIuMEsgzcEmMp0TiV1/F7wuhFs7AORS+h7LnRKkSRv6k7Y0RHYDdNH0jqzZj0CMd0mb5HHcrk0f9oY='} 2024-09-11T03:00:53.931 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-11T03:00:53.937 INFO:teuthology.task.internal:roles: ubuntu@smithi050.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-11T03:00:53.937 INFO:teuthology.task.internal:roles: ubuntu@smithi120.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-11T03:00:53.937 INFO:teuthology.task.internal:roles: ubuntu@smithi165.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-11T03:00:53.937 INFO:teuthology.run_tasks:Running task console_log... 2024-09-11T03:00:54.048 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f1373cc3be0>, signals=[15]) 2024-09-11T03:00:54.048 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-11T03:00:54.055 INFO:teuthology.task.internal:Opening connections... 2024-09-11T03:00:54.055 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi050.front.sepia.ceph.com 2024-09-11T03:00:54.056 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:00:54.143 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi120.front.sepia.ceph.com 2024-09-11T03:00:54.144 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:00:54.251 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi165.front.sepia.ceph.com 2024-09-11T03:00:54.251 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:00:54.335 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-11T03:00:54.342 DEBUG:teuthology.orchestra.run.smithi050:> uname -m 2024-09-11T03:00:54.361 INFO:teuthology.orchestra.run.smithi050.stdout:x86_64 2024-09-11T03:00:54.361 DEBUG:teuthology.orchestra.run.smithi050:> cat /etc/os-release 2024-09-11T03:00:54.418 INFO:teuthology.orchestra.run.smithi050.stdout:NAME="CentOS Stream" 2024-09-11T03:00:54.418 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION="9" 2024-09-11T03:00:54.418 INFO:teuthology.orchestra.run.smithi050.stdout:ID="centos" 2024-09-11T03:00:54.418 INFO:teuthology.orchestra.run.smithi050.stdout:ID_LIKE="rhel fedora" 2024-09-11T03:00:54.418 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION_ID="9" 2024-09-11T03:00:54.418 INFO:teuthology.orchestra.run.smithi050.stdout:PLATFORM_ID="platform:el9" 2024-09-11T03:00:54.419 INFO:teuthology.orchestra.run.smithi050.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-11T03:00:54.419 INFO:teuthology.orchestra.run.smithi050.stdout:ANSI_COLOR="0;31" 2024-09-11T03:00:54.419 INFO:teuthology.orchestra.run.smithi050.stdout:LOGO="fedora-logo-icon" 2024-09-11T03:00:54.419 INFO:teuthology.orchestra.run.smithi050.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-11T03:00:54.419 INFO:teuthology.orchestra.run.smithi050.stdout:HOME_URL="https://centos.org/" 2024-09-11T03:00:54.419 INFO:teuthology.orchestra.run.smithi050.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-11T03:00:54.419 INFO:teuthology.orchestra.run.smithi050.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-11T03:00:54.419 INFO:teuthology.orchestra.run.smithi050.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-11T03:00:54.420 INFO:teuthology.lock.ops:Updating smithi050.front.sepia.ceph.com on lock server 2024-09-11T03:00:54.457 DEBUG:teuthology.orchestra.run.smithi120:> uname -m 2024-09-11T03:00:54.476 INFO:teuthology.orchestra.run.smithi120.stdout:x86_64 2024-09-11T03:00:54.477 DEBUG:teuthology.orchestra.run.smithi120:> cat /etc/os-release 2024-09-11T03:00:54.535 INFO:teuthology.orchestra.run.smithi120.stdout:NAME="CentOS Stream" 2024-09-11T03:00:54.535 INFO:teuthology.orchestra.run.smithi120.stdout:VERSION="9" 2024-09-11T03:00:54.536 INFO:teuthology.orchestra.run.smithi120.stdout:ID="centos" 2024-09-11T03:00:54.536 INFO:teuthology.orchestra.run.smithi120.stdout:ID_LIKE="rhel fedora" 2024-09-11T03:00:54.536 INFO:teuthology.orchestra.run.smithi120.stdout:VERSION_ID="9" 2024-09-11T03:00:54.536 INFO:teuthology.orchestra.run.smithi120.stdout:PLATFORM_ID="platform:el9" 2024-09-11T03:00:54.536 INFO:teuthology.orchestra.run.smithi120.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-11T03:00:54.536 INFO:teuthology.orchestra.run.smithi120.stdout:ANSI_COLOR="0;31" 2024-09-11T03:00:54.536 INFO:teuthology.orchestra.run.smithi120.stdout:LOGO="fedora-logo-icon" 2024-09-11T03:00:54.536 INFO:teuthology.orchestra.run.smithi120.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-11T03:00:54.536 INFO:teuthology.orchestra.run.smithi120.stdout:HOME_URL="https://centos.org/" 2024-09-11T03:00:54.536 INFO:teuthology.orchestra.run.smithi120.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-11T03:00:54.536 INFO:teuthology.orchestra.run.smithi120.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-11T03:00:54.536 INFO:teuthology.orchestra.run.smithi120.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-11T03:00:54.537 INFO:teuthology.lock.ops:Updating smithi120.front.sepia.ceph.com on lock server 2024-09-11T03:00:54.565 DEBUG:teuthology.orchestra.run.smithi165:> uname -m 2024-09-11T03:00:54.584 INFO:teuthology.orchestra.run.smithi165.stdout:x86_64 2024-09-11T03:00:54.585 DEBUG:teuthology.orchestra.run.smithi165:> cat /etc/os-release 2024-09-11T03:00:54.642 INFO:teuthology.orchestra.run.smithi165.stdout:NAME="CentOS Stream" 2024-09-11T03:00:54.642 INFO:teuthology.orchestra.run.smithi165.stdout:VERSION="9" 2024-09-11T03:00:54.642 INFO:teuthology.orchestra.run.smithi165.stdout:ID="centos" 2024-09-11T03:00:54.642 INFO:teuthology.orchestra.run.smithi165.stdout:ID_LIKE="rhel fedora" 2024-09-11T03:00:54.642 INFO:teuthology.orchestra.run.smithi165.stdout:VERSION_ID="9" 2024-09-11T03:00:54.642 INFO:teuthology.orchestra.run.smithi165.stdout:PLATFORM_ID="platform:el9" 2024-09-11T03:00:54.642 INFO:teuthology.orchestra.run.smithi165.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-11T03:00:54.642 INFO:teuthology.orchestra.run.smithi165.stdout:ANSI_COLOR="0;31" 2024-09-11T03:00:54.642 INFO:teuthology.orchestra.run.smithi165.stdout:LOGO="fedora-logo-icon" 2024-09-11T03:00:54.642 INFO:teuthology.orchestra.run.smithi165.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-11T03:00:54.642 INFO:teuthology.orchestra.run.smithi165.stdout:HOME_URL="https://centos.org/" 2024-09-11T03:00:54.642 INFO:teuthology.orchestra.run.smithi165.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-11T03:00:54.643 INFO:teuthology.orchestra.run.smithi165.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-11T03:00:54.643 INFO:teuthology.orchestra.run.smithi165.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-11T03:00:54.643 INFO:teuthology.lock.ops:Updating smithi165.front.sepia.ceph.com on lock server 2024-09-11T03:00:54.674 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-11T03:00:54.682 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-11T03:00:54.689 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-11T03:00:54.689 DEBUG:teuthology.orchestra.run.smithi050:> test '!' -e /home/ubuntu/cephtest 2024-09-11T03:00:54.692 DEBUG:teuthology.orchestra.run.smithi120:> test '!' -e /home/ubuntu/cephtest 2024-09-11T03:00:54.694 DEBUG:teuthology.orchestra.run.smithi165:> test '!' -e /home/ubuntu/cephtest 2024-09-11T03:00:54.711 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-11T03:00:54.718 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-11T03:00:54.719 DEBUG:teuthology.orchestra.run.smithi050:> test -z $(ls -A /var/lib/ceph) 2024-09-11T03:00:54.749 DEBUG:teuthology.orchestra.run.smithi120:> test -z $(ls -A /var/lib/ceph) 2024-09-11T03:00:54.752 DEBUG:teuthology.orchestra.run.smithi165:> test -z $(ls -A /var/lib/ceph) 2024-09-11T03:00:55.012 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-11T03:00:55.116 INFO:teuthology.run_tasks:Running task kernel... 2024-09-11T03:00:55.130 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-11T03:00:55.130 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-11T03:00:55.130 DEBUG:teuthology.orchestra.run.smithi050:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-11T03:00:55.131 DEBUG:teuthology.orchestra.run.smithi120:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-11T03:00:55.131 DEBUG:teuthology.orchestra.run.smithi165:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-11T03:00:55.148 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T03:00:55.148 DEBUG:teuthology.orchestra.run.smithi050:> uname -r 2024-09-11T03:00:55.149 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T03:00:55.149 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T03:00:55.150 DEBUG:teuthology.orchestra.run.smithi165:> uname -r 2024-09-11T03:00:55.150 DEBUG:teuthology.orchestra.run.smithi120:> uname -r 2024-09-11T03:00:55.206 INFO:teuthology.orchestra.run.smithi050.stdout:5.14.0-503.el9.x86_64 2024-09-11T03:00:55.206 INFO:teuthology.task.kernel:Running kernel on smithi050: 5.14.0-503.el9.x86_64 2024-09-11T03:00:55.206 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum install -y kernel 2024-09-11T03:00:55.208 INFO:teuthology.orchestra.run.smithi120.stdout:5.14.0-503.el9.x86_64 2024-09-11T03:00:55.209 INFO:teuthology.task.kernel:Running kernel on smithi120: 5.14.0-503.el9.x86_64 2024-09-11T03:00:55.209 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum install -y kernel 2024-09-11T03:00:55.210 INFO:teuthology.orchestra.run.smithi165.stdout:5.14.0-503.el9.x86_64 2024-09-11T03:00:55.210 INFO:teuthology.task.kernel:Running kernel on smithi165: 5.14.0-503.el9.x86_64 2024-09-11T03:00:55.210 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum install -y kernel 2024-09-11T03:00:57.747 INFO:teuthology.orchestra.run.smithi120.stdout:CentOS Stream 9 - BaseOS 10 MB/s | 8.2 MB 00:00 2024-09-11T03:00:58.551 INFO:teuthology.orchestra.run.smithi165.stdout:CentOS Stream 9 - BaseOS 5.2 MB/s | 8.2 MB 00:01 2024-09-11T03:00:58.700 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - BaseOS 4.5 MB/s | 8.2 MB 00:01 2024-09-11T03:00:59.823 INFO:teuthology.orchestra.run.smithi120.stdout:CentOS Stream 9 - AppStream 21 MB/s | 20 MB 00:00 2024-09-11T03:01:00.959 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - AppStream 19 MB/s | 20 MB 00:01 2024-09-11T03:01:04.199 INFO:teuthology.orchestra.run.smithi120.stdout:CentOS Stream 9 - CRB 11 MB/s | 6.5 MB 00:00 2024-09-11T03:01:06.016 INFO:teuthology.orchestra.run.smithi120.stdout:CentOS Stream 9 - Extras packages 42 kB/s | 19 kB 00:00 2024-09-11T03:01:07.359 INFO:teuthology.orchestra.run.smithi165.stdout:CentOS Stream 9 - AppStream 2.7 MB/s | 20 MB 00:07 2024-09-11T03:01:07.487 INFO:teuthology.orchestra.run.smithi120.stdout:Extra Packages for Enterprise Linux 17 MB/s | 23 MB 00:01 2024-09-11T03:01:08.385 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - CRB 1.9 MB/s | 6.5 MB 00:03 2024-09-11T03:01:10.319 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - Extras packages 27 kB/s | 19 kB 00:00 2024-09-11T03:01:11.806 INFO:teuthology.orchestra.run.smithi050.stdout:Extra Packages for Enterprise Linux 17 MB/s | 23 MB 00:01 2024-09-11T03:01:12.709 INFO:teuthology.orchestra.run.smithi165.stdout:CentOS Stream 9 - CRB 4.1 MB/s | 6.5 MB 00:01 2024-09-11T03:01:12.835 INFO:teuthology.orchestra.run.smithi120.stdout:lab-extras 25 kB/s | 1.7 kB 00:00 2024-09-11T03:01:13.030 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:00:01 ago on Wed 11 Sep 2024 03:01:12 AM UTC. 2024-09-11T03:01:14.143 INFO:teuthology.orchestra.run.smithi165.stdout:CentOS Stream 9 - Extras packages 78 kB/s | 19 kB 00:00 2024-09-11T03:01:14.898 INFO:teuthology.orchestra.run.smithi120.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-11T03:01:14.898 INFO:teuthology.orchestra.run.smithi120.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-11T03:01:14.999 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:01:15.007 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:01:15.008 INFO:teuthology.orchestra.run.smithi120.stdout: Package Architecture Version Repository Size 2024-09-11T03:01:15.008 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:01:15.008 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:01:15.008 INFO:teuthology.orchestra.run.smithi120.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-11T03:01:15.008 INFO:teuthology.orchestra.run.smithi120.stdout:Installing dependencies: 2024-09-11T03:01:15.008 INFO:teuthology.orchestra.run.smithi120.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-11T03:01:15.008 INFO:teuthology.orchestra.run.smithi120.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-11T03:01:15.008 INFO:teuthology.orchestra.run.smithi120.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-11T03:01:15.008 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:01:15.008 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:01:15.008 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:01:15.009 INFO:teuthology.orchestra.run.smithi120.stdout:Install 4 Packages 2024-09-11T03:01:15.009 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:01:15.009 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 79 M 2024-09-11T03:01:15.009 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 126 M 2024-09-11T03:01:15.009 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:01:15.128 INFO:teuthology.orchestra.run.smithi120.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 300 kB/s | 23 kB 00:00 2024-09-11T03:01:15.330 INFO:teuthology.orchestra.run.smithi165.stdout:Extra Packages for Enterprise Linux 21 MB/s | 23 MB 00:01 2024-09-11T03:01:15.962 INFO:teuthology.orchestra.run.smithi120.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 17 MB/s | 16 MB 00:00 2024-09-11T03:01:17.471 INFO:teuthology.orchestra.run.smithi050.stdout:lab-extras 28 kB/s | 1.7 kB 00:00 2024-09-11T03:01:19.586 INFO:teuthology.orchestra.run.smithi050.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-11T03:01:19.586 INFO:teuthology.orchestra.run.smithi050.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-11T03:01:19.675 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:01:19.684 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:01:19.684 INFO:teuthology.orchestra.run.smithi050.stdout: Package Architecture Version Repository Size 2024-09-11T03:01:19.684 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:01:19.684 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:01:19.685 INFO:teuthology.orchestra.run.smithi050.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-11T03:01:19.685 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-09-11T03:01:19.685 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-11T03:01:19.685 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-11T03:01:19.685 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-11T03:01:19.685 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:01:19.685 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:01:19.685 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:01:19.685 INFO:teuthology.orchestra.run.smithi050.stdout:Install 4 Packages 2024-09-11T03:01:19.685 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:01:19.686 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 79 M 2024-09-11T03:01:19.686 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 126 M 2024-09-11T03:01:19.686 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:01:19.789 INFO:teuthology.orchestra.run.smithi050.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 277 kB/s | 23 kB 00:00 2024-09-11T03:01:20.811 INFO:teuthology.orchestra.run.smithi165.stdout:lab-extras 28 kB/s | 1.7 kB 00:00 2024-09-11T03:01:22.261 INFO:teuthology.orchestra.run.smithi120.stdout:(3/4): kernel-modules-core-5.14.0-505.el9.x86_6 4.0 MB/s | 29 MB 00:07 2024-09-11T03:01:22.564 INFO:teuthology.orchestra.run.smithi050.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 5.5 MB/s | 16 MB 00:02 2024-09-11T03:01:22.809 INFO:teuthology.orchestra.run.smithi165.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-11T03:01:22.809 INFO:teuthology.orchestra.run.smithi165.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-11T03:01:22.900 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:01:22.911 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:01:22.911 INFO:teuthology.orchestra.run.smithi165.stdout: Package Architecture Version Repository Size 2024-09-11T03:01:22.912 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:01:22.912 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:01:22.912 INFO:teuthology.orchestra.run.smithi165.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-11T03:01:22.912 INFO:teuthology.orchestra.run.smithi165.stdout:Installing dependencies: 2024-09-11T03:01:22.912 INFO:teuthology.orchestra.run.smithi165.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-11T03:01:22.912 INFO:teuthology.orchestra.run.smithi165.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-11T03:01:22.912 INFO:teuthology.orchestra.run.smithi165.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-11T03:01:22.912 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:01:22.912 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:01:22.912 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:01:22.912 INFO:teuthology.orchestra.run.smithi165.stdout:Install 4 Packages 2024-09-11T03:01:22.912 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:01:22.913 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 79 M 2024-09-11T03:01:22.913 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 126 M 2024-09-11T03:01:22.913 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:01:23.529 INFO:teuthology.orchestra.run.smithi165.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 39 kB/s | 23 kB 00:00 2024-09-11T03:01:23.970 INFO:teuthology.orchestra.run.smithi120.stdout:(4/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 3.9 MB/s | 35 MB 00:08 2024-09-11T03:01:23.970 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:01:23.970 INFO:teuthology.orchestra.run.smithi120.stdout:Total 8.8 MB/s | 79 MB 00:08 2024-09-11T03:01:24.649 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:01:24.962 INFO:teuthology.orchestra.run.smithi165.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 7.7 MB/s | 16 MB 00:02 2024-09-11T03:01:25.002 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:01:25.003 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:01:25.621 INFO:teuthology.orchestra.run.smithi165.stdout:(3/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 13 MB/s | 35 MB 00:02 2024-09-11T03:01:25.822 INFO:teuthology.orchestra.run.smithi050.stdout:(3/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 5.6 MB/s | 35 MB 00:06 2024-09-11T03:01:25.953 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:01:25.953 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:01:26.029 INFO:teuthology.orchestra.run.smithi165.stdout:(4/4): kernel-modules-core-5.14.0-505.el9.x86_6 11 MB/s | 29 MB 00:02 2024-09-11T03:01:26.029 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:01:26.030 INFO:teuthology.orchestra.run.smithi165.stdout:Total 25 MB/s | 79 MB 00:03 2024-09-11T03:01:26.497 INFO:teuthology.orchestra.run.smithi050.stdout:(4/4): kernel-modules-core-5.14.0-505.el9.x86_6 4.3 MB/s | 29 MB 00:06 2024-09-11T03:01:26.498 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:01:26.498 INFO:teuthology.orchestra.run.smithi050.stdout:Total 12 MB/s | 79 MB 00:06 2024-09-11T03:01:26.711 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:01:27.061 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:01:27.061 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:01:27.209 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:01:27.600 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:01:27.601 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:01:28.026 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:01:28.026 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:01:28.404 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:01:28.576 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:01:28.576 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:01:29.129 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-11T03:01:29.230 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T03:01:30.472 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:01:31.174 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:01:31.188 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-11T03:01:31.280 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T03:01:31.831 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-11T03:01:31.917 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T03:01:32.039 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T03:01:32.165 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T03:01:34.068 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T03:01:34.197 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T03:01:34.719 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T03:01:34.846 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T03:01:36.987 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T03:01:37.031 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:01:39.032 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T03:01:39.151 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:01:39.966 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T03:01:40.005 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:01:42.005 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:01:44.003 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:01:45.147 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:02:20.090 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:02:20.129 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:02:20.404 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:02:20.405 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-11T03:02:20.405 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T03:02:20.405 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T03:02:21.282 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:02:21.282 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:02:21.282 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:02:21.282 INFO:teuthology.orchestra.run.smithi120.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-11T03:02:21.283 INFO:teuthology.orchestra.run.smithi120.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-11T03:02:21.283 INFO:teuthology.orchestra.run.smithi120.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-11T03:02:21.283 INFO:teuthology.orchestra.run.smithi120.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-11T03:02:21.283 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:02:21.283 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:02:21.634 DEBUG:teuthology.orchestra.run.smithi120:> rpm -q kernel | sort -rV | head -n 1 2024-09-11T03:02:21.724 INFO:teuthology.orchestra.run.smithi120.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-11T03:02:21.725 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-11T03:02:21.725 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-11T03:02:21.725 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-11T03:02:21.725 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-11T03:02:21.725 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-11T03:02:21.725 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi120.front.sepia.ceph.com, path=None, version=distro) 2024-09-11T03:02:21.725 DEBUG:teuthology.orchestra.run.smithi120:> rpm -q kernel | sort -rV | head -n 1 2024-09-11T03:02:21.784 INFO:teuthology.orchestra.run.smithi120.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-11T03:02:21.784 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-11T03:02:21.784 DEBUG:teuthology.orchestra.run.smithi120:> sudo rpm -qi grub2-tools 2024-09-11T03:02:21.820 INFO:teuthology.orchestra.run.smithi120.stdout:Name : grub2-tools 2024-09-11T03:02:21.820 INFO:teuthology.orchestra.run.smithi120.stdout:Epoch : 1 2024-09-11T03:02:21.820 INFO:teuthology.orchestra.run.smithi120.stdout:Version : 2.06 2024-09-11T03:02:21.821 INFO:teuthology.orchestra.run.smithi120.stdout:Release : 82.el9 2024-09-11T03:02:21.821 INFO:teuthology.orchestra.run.smithi120.stdout:Architecture: x86_64 2024-09-11T03:02:21.821 INFO:teuthology.orchestra.run.smithi120.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-11T03:02:21.821 INFO:teuthology.orchestra.run.smithi120.stdout:Group : Unspecified 2024-09-11T03:02:21.821 INFO:teuthology.orchestra.run.smithi120.stdout:Size : 8274670 2024-09-11T03:02:21.821 INFO:teuthology.orchestra.run.smithi120.stdout:License : GPLv3+ 2024-09-11T03:02:21.821 INFO:teuthology.orchestra.run.smithi120.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-11T03:02:21.821 INFO:teuthology.orchestra.run.smithi120.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-11T03:02:21.821 INFO:teuthology.orchestra.run.smithi120.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-11T03:02:21.822 INFO:teuthology.orchestra.run.smithi120.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-11T03:02:21.822 INFO:teuthology.orchestra.run.smithi120.stdout:Packager : builder@centos.org 2024-09-11T03:02:21.822 INFO:teuthology.orchestra.run.smithi120.stdout:Vendor : CentOS 2024-09-11T03:02:21.822 INFO:teuthology.orchestra.run.smithi120.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-11T03:02:21.822 INFO:teuthology.orchestra.run.smithi120.stdout:Summary : Support tools for GRUB. 2024-09-11T03:02:21.822 INFO:teuthology.orchestra.run.smithi120.stdout:Description : 2024-09-11T03:02:21.822 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:02:21.822 INFO:teuthology.orchestra.run.smithi120.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-11T03:02:21.822 INFO:teuthology.orchestra.run.smithi120.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-11T03:02:21.822 INFO:teuthology.orchestra.run.smithi120.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-11T03:02:21.823 INFO:teuthology.orchestra.run.smithi120.stdout:hardware devices. 2024-09-11T03:02:21.823 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:02:21.823 INFO:teuthology.orchestra.run.smithi120.stdout:This subpackage provides tools for support of all platforms. 2024-09-11T03:02:21.824 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-11T03:02:21.824 INFO:teuthology.task.kernel:Updating grub on smithi120 to boot 5.14.0-505.el9.x86_64 2024-09-11T03:02:21.824 DEBUG:teuthology.orchestra.run.smithi120:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-11T03:02:22.142 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:02:22.182 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:02:22.480 INFO:teuthology.orchestra.run.smithi120.stderr:Generating grub configuration file ... 2024-09-11T03:02:22.490 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:02:22.490 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-11T03:02:22.490 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T03:02:22.490 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T03:02:23.358 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:02:23.359 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:02:23.359 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:02:23.359 INFO:teuthology.orchestra.run.smithi165.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-11T03:02:23.359 INFO:teuthology.orchestra.run.smithi165.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-11T03:02:23.359 INFO:teuthology.orchestra.run.smithi165.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-11T03:02:23.359 INFO:teuthology.orchestra.run.smithi165.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-11T03:02:23.359 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:02:23.359 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:02:23.699 DEBUG:teuthology.orchestra.run.smithi165:> rpm -q kernel | sort -rV | head -n 1 2024-09-11T03:02:23.750 INFO:teuthology.orchestra.run.smithi120.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-11T03:02:23.775 INFO:teuthology.orchestra.run.smithi120.stderr:done 2024-09-11T03:02:23.780 INFO:teuthology.orchestra.run.smithi165.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-11T03:02:23.780 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-11T03:02:23.780 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-11T03:02:23.780 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-11T03:02:23.780 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-11T03:02:23.780 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-11T03:02:23.780 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi165.front.sepia.ceph.com, path=None, version=distro) 2024-09-11T03:02:23.780 DEBUG:teuthology.orchestra.run.smithi165:> rpm -q kernel | sort -rV | head -n 1 2024-09-11T03:02:23.787 DEBUG:teuthology.orchestra.run.smithi120:> mktemp 2024-09-11T03:02:23.802 INFO:teuthology.orchestra.run.smithi120.stdout:/tmp/tmp.4idf8qvqL3 2024-09-11T03:02:23.803 DEBUG:teuthology.orchestra.run.smithi120:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.4idf8qvqL3 2024-09-11T03:02:23.839 INFO:teuthology.orchestra.run.smithi165.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-11T03:02:23.839 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-11T03:02:23.839 DEBUG:teuthology.orchestra.run.smithi165:> sudo rpm -qi grub2-tools 2024-09-11T03:02:23.856 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:02:23.870 INFO:teuthology.orchestra.run.smithi165.stdout:Name : grub2-tools 2024-09-11T03:02:23.871 INFO:teuthology.orchestra.run.smithi165.stdout:Epoch : 1 2024-09-11T03:02:23.871 INFO:teuthology.orchestra.run.smithi165.stdout:Version : 2.06 2024-09-11T03:02:23.871 INFO:teuthology.orchestra.run.smithi165.stdout:Release : 82.el9 2024-09-11T03:02:23.871 INFO:teuthology.orchestra.run.smithi165.stdout:Architecture: x86_64 2024-09-11T03:02:23.871 INFO:teuthology.orchestra.run.smithi165.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-11T03:02:23.871 INFO:teuthology.orchestra.run.smithi165.stdout:Group : Unspecified 2024-09-11T03:02:23.871 INFO:teuthology.orchestra.run.smithi165.stdout:Size : 8274670 2024-09-11T03:02:23.871 INFO:teuthology.orchestra.run.smithi165.stdout:License : GPLv3+ 2024-09-11T03:02:23.871 INFO:teuthology.orchestra.run.smithi165.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-11T03:02:23.871 INFO:teuthology.orchestra.run.smithi165.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-11T03:02:23.871 INFO:teuthology.orchestra.run.smithi165.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-11T03:02:23.871 INFO:teuthology.orchestra.run.smithi165.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-11T03:02:23.872 INFO:teuthology.orchestra.run.smithi165.stdout:Packager : builder@centos.org 2024-09-11T03:02:23.872 INFO:teuthology.orchestra.run.smithi165.stdout:Vendor : CentOS 2024-09-11T03:02:23.872 INFO:teuthology.orchestra.run.smithi165.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-11T03:02:23.872 INFO:teuthology.orchestra.run.smithi165.stdout:Summary : Support tools for GRUB. 2024-09-11T03:02:23.872 INFO:teuthology.orchestra.run.smithi165.stdout:Description : 2024-09-11T03:02:23.872 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:02:23.872 INFO:teuthology.orchestra.run.smithi165.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-11T03:02:23.872 INFO:teuthology.orchestra.run.smithi165.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-11T03:02:23.872 INFO:teuthology.orchestra.run.smithi165.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-11T03:02:23.872 INFO:teuthology.orchestra.run.smithi165.stdout:hardware devices. 2024-09-11T03:02:23.872 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:02:23.872 INFO:teuthology.orchestra.run.smithi165.stdout:This subpackage provides tools for support of all platforms. 2024-09-11T03:02:23.873 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-11T03:02:23.873 INFO:teuthology.task.kernel:Updating grub on smithi165 to boot 5.14.0-505.el9.x86_64 2024-09-11T03:02:23.873 DEBUG:teuthology.orchestra.run.smithi165:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-11T03:02:23.876 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 0666 /tmp/tmp.4idf8qvqL3 2024-09-11T03:02:23.897 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:02:24.019 DEBUG:teuthology.orchestra.remote:smithi120:/tmp/tmp.4idf8qvqL3 is 6KB 2024-09-11T03:02:24.067 DEBUG:teuthology.orchestra.run.smithi120:> rm -fr /tmp/tmp.4idf8qvqL3 2024-09-11T03:02:24.082 DEBUG:teuthology.orchestra.run.smithi120:> sudo /bin/ls /boot/loader/entries || true 2024-09-11T03:02:24.145 INFO:teuthology.orchestra.run.smithi120.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-11T03:02:24.145 INFO:teuthology.orchestra.run.smithi120.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-11T03:02:24.145 INFO:teuthology.orchestra.run.smithi120.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-11T03:02:24.145 INFO:teuthology.orchestra.run.smithi120.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-11T03:02:24.147 DEBUG:teuthology.orchestra.run.smithi120:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-11T03:02:24.220 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:02:24.220 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-11T03:02:24.220 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T03:02:24.220 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T03:02:24.314 DEBUG:teuthology.orchestra.run.smithi120:> sudo shutdown -r now 2024-09-11T03:02:24.513 INFO:teuthology.orchestra.run.smithi165.stderr:Generating grub configuration file ... 2024-09-11T03:02:25.101 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T03:02:25.101 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:02:25.101 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:02:25.101 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-11T03:02:25.101 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-11T03:02:25.102 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-11T03:02:25.102 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-11T03:02:25.102 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:02:25.102 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:02:25.450 DEBUG:teuthology.orchestra.run.smithi050:> rpm -q kernel | sort -rV | head -n 1 2024-09-11T03:02:25.536 INFO:teuthology.orchestra.run.smithi050.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-11T03:02:25.537 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-11T03:02:25.537 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-11T03:02:25.537 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-11T03:02:25.537 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-11T03:02:25.537 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-11T03:02:25.537 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi050.front.sepia.ceph.com, path=None, version=distro) 2024-09-11T03:02:25.537 DEBUG:teuthology.orchestra.run.smithi050:> rpm -q kernel | sort -rV | head -n 1 2024-09-11T03:02:25.596 INFO:teuthology.orchestra.run.smithi050.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-11T03:02:25.596 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-11T03:02:25.596 DEBUG:teuthology.orchestra.run.smithi050:> sudo rpm -qi grub2-tools 2024-09-11T03:02:25.627 INFO:teuthology.orchestra.run.smithi050.stdout:Name : grub2-tools 2024-09-11T03:02:25.627 INFO:teuthology.orchestra.run.smithi050.stdout:Epoch : 1 2024-09-11T03:02:25.627 INFO:teuthology.orchestra.run.smithi050.stdout:Version : 2.06 2024-09-11T03:02:25.627 INFO:teuthology.orchestra.run.smithi050.stdout:Release : 82.el9 2024-09-11T03:02:25.628 INFO:teuthology.orchestra.run.smithi050.stdout:Architecture: x86_64 2024-09-11T03:02:25.628 INFO:teuthology.orchestra.run.smithi050.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-11T03:02:25.628 INFO:teuthology.orchestra.run.smithi050.stdout:Group : Unspecified 2024-09-11T03:02:25.628 INFO:teuthology.orchestra.run.smithi050.stdout:Size : 8274670 2024-09-11T03:02:25.628 INFO:teuthology.orchestra.run.smithi050.stdout:License : GPLv3+ 2024-09-11T03:02:25.628 INFO:teuthology.orchestra.run.smithi050.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-11T03:02:25.628 INFO:teuthology.orchestra.run.smithi050.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-11T03:02:25.628 INFO:teuthology.orchestra.run.smithi050.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-11T03:02:25.628 INFO:teuthology.orchestra.run.smithi050.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-11T03:02:25.628 INFO:teuthology.orchestra.run.smithi050.stdout:Packager : builder@centos.org 2024-09-11T03:02:25.628 INFO:teuthology.orchestra.run.smithi050.stdout:Vendor : CentOS 2024-09-11T03:02:25.628 INFO:teuthology.orchestra.run.smithi050.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-11T03:02:25.629 INFO:teuthology.orchestra.run.smithi050.stdout:Summary : Support tools for GRUB. 2024-09-11T03:02:25.629 INFO:teuthology.orchestra.run.smithi050.stdout:Description : 2024-09-11T03:02:25.629 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:02:25.629 INFO:teuthology.orchestra.run.smithi050.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-11T03:02:25.629 INFO:teuthology.orchestra.run.smithi050.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-11T03:02:25.629 INFO:teuthology.orchestra.run.smithi050.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-11T03:02:25.629 INFO:teuthology.orchestra.run.smithi050.stdout:hardware devices. 2024-09-11T03:02:25.629 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:02:25.629 INFO:teuthology.orchestra.run.smithi050.stdout:This subpackage provides tools for support of all platforms. 2024-09-11T03:02:25.630 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-11T03:02:25.630 INFO:teuthology.task.kernel:Updating grub on smithi050 to boot 5.14.0-505.el9.x86_64 2024-09-11T03:02:25.630 DEBUG:teuthology.orchestra.run.smithi050:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-11T03:02:25.966 INFO:teuthology.orchestra.run.smithi165.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-11T03:02:25.988 INFO:teuthology.orchestra.run.smithi165.stderr:done 2024-09-11T03:02:25.990 DEBUG:teuthology.orchestra.run.smithi165:> mktemp 2024-09-11T03:02:26.005 INFO:teuthology.orchestra.run.smithi165.stdout:/tmp/tmp.FkzVWsC5VB 2024-09-11T03:02:26.006 DEBUG:teuthology.orchestra.run.smithi165:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.FkzVWsC5VB 2024-09-11T03:02:26.073 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod 0666 /tmp/tmp.FkzVWsC5VB 2024-09-11T03:02:26.215 DEBUG:teuthology.orchestra.remote:smithi165:/tmp/tmp.FkzVWsC5VB is 6KB 2024-09-11T03:02:26.242 INFO:teuthology.orchestra.run.smithi050.stderr:Generating grub configuration file ... 2024-09-11T03:02:26.264 DEBUG:teuthology.orchestra.run.smithi165:> rm -fr /tmp/tmp.FkzVWsC5VB 2024-09-11T03:02:26.279 DEBUG:teuthology.orchestra.run.smithi165:> sudo /bin/ls /boot/loader/entries || true 2024-09-11T03:02:26.342 INFO:teuthology.orchestra.run.smithi165.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-11T03:02:26.342 INFO:teuthology.orchestra.run.smithi165.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-11T03:02:26.342 INFO:teuthology.orchestra.run.smithi165.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-11T03:02:26.342 INFO:teuthology.orchestra.run.smithi165.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-11T03:02:26.344 DEBUG:teuthology.orchestra.run.smithi165:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-11T03:02:26.493 DEBUG:teuthology.orchestra.run.smithi165:> sudo shutdown -r now 2024-09-11T03:02:27.662 INFO:teuthology.orchestra.run.smithi050.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-11T03:02:27.700 INFO:teuthology.orchestra.run.smithi050.stderr:done 2024-09-11T03:02:27.702 DEBUG:teuthology.orchestra.run.smithi050:> mktemp 2024-09-11T03:02:27.738 INFO:teuthology.orchestra.run.smithi050.stdout:/tmp/tmp.whbydHpwET 2024-09-11T03:02:27.738 DEBUG:teuthology.orchestra.run.smithi050:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.whbydHpwET 2024-09-11T03:02:27.804 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 0666 /tmp/tmp.whbydHpwET 2024-09-11T03:02:27.950 DEBUG:teuthology.orchestra.remote:smithi050:/tmp/tmp.whbydHpwET is 6KB 2024-09-11T03:02:27.997 DEBUG:teuthology.orchestra.run.smithi050:> rm -fr /tmp/tmp.whbydHpwET 2024-09-11T03:02:28.012 DEBUG:teuthology.orchestra.run.smithi050:> sudo /bin/ls /boot/loader/entries || true 2024-09-11T03:02:28.074 INFO:teuthology.orchestra.run.smithi050.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-11T03:02:28.075 INFO:teuthology.orchestra.run.smithi050.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-11T03:02:28.075 INFO:teuthology.orchestra.run.smithi050.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-11T03:02:28.075 INFO:teuthology.orchestra.run.smithi050.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-11T03:02:28.076 DEBUG:teuthology.orchestra.run.smithi050:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-11T03:02:28.226 DEBUG:teuthology.orchestra.run.smithi050:> sudo shutdown -r now 2024-09-11T03:02:54.341 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-11T03:02:54.342 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-11T03:02:54.343 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:02:56.498 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-11T03:02:56.498 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-09-11T03:02:56.499 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:02:58.230 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-11T03:02:58.231 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-11T03:02:58.231 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:03:12.705 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.120 2024-09-11T03:03:15.009 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.165 2024-09-11T03:03:16.797 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.50 2024-09-11T03:03:21.711 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-11T03:03:21.711 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:03:24.012 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-09-11T03:03:24.012 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:03:24.801 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.120 2024-09-11T03:03:25.798 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-11T03:03:25.799 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:03:27.105 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.165 2024-09-11T03:03:36.809 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-11T03:03:36.810 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:03:39.108 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-09-11T03:03:39.109 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:04:08.544 DEBUG:teuthology.orchestra.run.smithi120:> true 2024-09-11T03:04:08.928 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-11T03:04:08.928 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-505.el9.x86_64"... 2024-09-11T03:04:08.928 DEBUG:teuthology.orchestra.run.smithi120:> uname -r 2024-09-11T03:04:08.943 INFO:teuthology.orchestra.run.smithi120.stdout:5.14.0-505.el9.x86_64 2024-09-11T03:04:08.943 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-11T03:04:08.943 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-11T03:04:08.943 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-11T03:04:09.945 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-11T03:04:09.945 DEBUG:teuthology.orchestra.run.smithi120:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-11T03:04:10.029 INFO:teuthology.orchestra.run.smithi120.stdout:ttyS1 2024-09-11T03:04:10.062 DEBUG:teuthology.parallel:result is None 2024-09-11T03:04:25.809 DEBUG:teuthology.orchestra.remote:timed out 2024-09-11T03:04:37.810 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-11T03:04:37.811 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:04:38.236 DEBUG:teuthology.orchestra.run.smithi050:> true 2024-09-11T03:04:38.605 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-11T03:04:38.606 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-505.el9.x86_64"... 2024-09-11T03:04:38.606 DEBUG:teuthology.orchestra.run.smithi050:> uname -r 2024-09-11T03:04:38.622 INFO:teuthology.orchestra.run.smithi050.stdout:5.14.0-505.el9.x86_64 2024-09-11T03:04:38.622 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-11T03:04:38.623 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-11T03:04:38.623 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-11T03:04:39.119 DEBUG:teuthology.orchestra.remote:timed out 2024-09-11T03:04:39.624 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-11T03:04:39.624 DEBUG:teuthology.orchestra.run.smithi050:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-11T03:04:39.699 INFO:teuthology.orchestra.run.smithi050.stdout:ttyS1 2024-09-11T03:04:39.720 DEBUG:teuthology.parallel:result is None 2024-09-11T03:04:54.120 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-09-11T03:04:54.121 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:04:54.488 DEBUG:teuthology.orchestra.run.smithi165:> true 2024-09-11T03:04:54.822 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-09-11T03:04:54.822 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-505.el9.x86_64"... 2024-09-11T03:04:54.822 DEBUG:teuthology.orchestra.run.smithi165:> uname -r 2024-09-11T03:04:54.838 INFO:teuthology.orchestra.run.smithi165.stdout:5.14.0-505.el9.x86_64 2024-09-11T03:04:54.838 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-11T03:04:54.838 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-11T03:04:54.838 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-11T03:04:55.839 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-11T03:04:55.839 DEBUG:teuthology.orchestra.run.smithi165:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-11T03:04:55.915 INFO:teuthology.orchestra.run.smithi165.stdout:ttyS1 2024-09-11T03:04:55.945 DEBUG:teuthology.parallel:result is None 2024-09-11T03:04:55.945 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-11T03:04:55.952 INFO:teuthology.task.internal:Creating test directory... 2024-09-11T03:04:55.953 DEBUG:teuthology.orchestra.run.smithi050:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-11T03:04:55.955 DEBUG:teuthology.orchestra.run.smithi120:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-11T03:04:55.958 DEBUG:teuthology.orchestra.run.smithi165:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-11T03:04:55.976 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-11T03:04:56.032 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-11T03:04:56.078 INFO:teuthology.task.internal:Creating archive directory... 2024-09-11T03:04:56.079 DEBUG:teuthology.orchestra.run.smithi050:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-11T03:04:56.081 DEBUG:teuthology.orchestra.run.smithi120:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-11T03:04:56.083 DEBUG:teuthology.orchestra.run.smithi165:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-11T03:04:56.112 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-11T03:04:56.119 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-11T03:04:56.119 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-09-11T03:04:56.148 DEBUG:teuthology.orchestra.run.smithi120:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-11T03:04:56.150 DEBUG:teuthology.orchestra.run.smithi165:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-11T03:04:56.179 INFO:teuthology.orchestra.run.smithi120.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T03:04:56.190 INFO:teuthology.orchestra.run.smithi120.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T03:04:56.191 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T03:04:56.191 INFO:teuthology.orchestra.run.smithi165.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T03:04:56.202 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T03:04:56.203 INFO:teuthology.orchestra.run.smithi165.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T03:04:56.205 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-11T03:04:56.211 INFO:teuthology.task.internal:Configuring sudo... 2024-09-11T03:04:56.212 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-09-11T03:04:56.214 DEBUG:teuthology.orchestra.run.smithi120:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-11T03:04:56.235 DEBUG:teuthology.orchestra.run.smithi165:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-11T03:04:56.274 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-11T03:04:56.282 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-11T03:04:56.282 DEBUG:teuthology.orchestra.run.smithi050:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-11T03:04:56.285 DEBUG:teuthology.orchestra.run.smithi120:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-11T03:04:56.302 DEBUG:teuthology.orchestra.run.smithi165:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-11T03:04:56.331 DEBUG:teuthology.orchestra.run.smithi050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-11T03:04:56.394 DEBUG:teuthology.orchestra.run.smithi050:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-11T03:04:56.437 DEBUG:teuthology.orchestra.run.smithi050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-11T03:04:56.524 DEBUG:teuthology.orchestra.run.smithi050:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-11T03:04:56.563 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:04:56.563 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-11T03:04:56.630 DEBUG:teuthology.orchestra.run.smithi120:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-11T03:04:56.676 DEBUG:teuthology.orchestra.run.smithi120:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-11T03:04:56.732 DEBUG:teuthology.orchestra.run.smithi120:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-11T03:04:56.820 DEBUG:teuthology.orchestra.run.smithi120:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-11T03:04:56.857 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-11T03:04:56.857 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-11T03:04:56.923 DEBUG:teuthology.orchestra.run.smithi165:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-11T03:04:56.976 DEBUG:teuthology.orchestra.run.smithi165:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-11T03:04:57.022 DEBUG:teuthology.orchestra.run.smithi165:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-11T03:04:57.113 DEBUG:teuthology.orchestra.run.smithi165:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-11T03:04:57.151 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-11T03:04:57.151 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-11T03:04:57.218 DEBUG:teuthology.orchestra.run.smithi050:> sudo service rsyslog restart 2024-09-11T03:04:57.221 DEBUG:teuthology.orchestra.run.smithi120:> sudo service rsyslog restart 2024-09-11T03:04:57.223 DEBUG:teuthology.orchestra.run.smithi165:> sudo service rsyslog restart 2024-09-11T03:04:57.266 INFO:teuthology.orchestra.run.smithi050.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-11T03:04:57.270 INFO:teuthology.orchestra.run.smithi120.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-11T03:04:57.302 INFO:teuthology.orchestra.run.smithi165.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-11T03:04:57.727 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-11T03:04:57.734 INFO:teuthology.task.internal:Starting timer... 2024-09-11T03:04:57.735 INFO:teuthology.run_tasks:Running task pcp... 2024-09-11T03:04:57.751 INFO:teuthology.run_tasks:Running task selinux... 2024-09-11T03:04:57.759 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-09-11T03:04:57.759 DEBUG:teuthology.orchestra.run.smithi050:> sudo service auditd rotate 2024-09-11T03:04:57.818 INFO:teuthology.orchestra.run.smithi050.stdout:Rotating logs: 2024-09-11T03:04:57.820 DEBUG:teuthology.orchestra.run.smithi120:> sudo service auditd rotate 2024-09-11T03:04:57.881 INFO:teuthology.orchestra.run.smithi120.stdout:Rotating logs: 2024-09-11T03:04:57.883 DEBUG:teuthology.orchestra.run.smithi165:> sudo service auditd rotate 2024-09-11T03:04:57.933 INFO:teuthology.orchestra.run.smithi165.stdout:Rotating logs: 2024-09-11T03:04:57.935 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-11T03:04:57.935 DEBUG:teuthology.orchestra.run.smithi050:> /usr/sbin/getenforce 2024-09-11T03:04:57.963 INFO:teuthology.orchestra.run.smithi050.stdout:Permissive 2024-09-11T03:04:57.963 DEBUG:teuthology.orchestra.run.smithi120:> /usr/sbin/getenforce 2024-09-11T03:04:57.985 INFO:teuthology.orchestra.run.smithi120.stdout:Permissive 2024-09-11T03:04:57.986 DEBUG:teuthology.orchestra.run.smithi165:> /usr/sbin/getenforce 2024-09-11T03:04:58.014 INFO:teuthology.orchestra.run.smithi165.stdout:Permissive 2024-09-11T03:04:58.014 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi050.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi120.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi165.front.sepia.ceph.com': 'permissive'} 2024-09-11T03:04:58.015 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 context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-09-11T03:04:58.043 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T03:04:58.044 DEBUG:teuthology.orchestra.run.smithi120:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-09-11T03:04:58.071 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T03:04:58.071 DEBUG:teuthology.orchestra.run.smithi165:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-09-11T03:04:58.100 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T03:04:58.101 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-11T03:04:58.101 DEBUG:teuthology.orchestra.run.smithi050:> sudo /usr/sbin/setenforce permissive 2024-09-11T03:04:58.144 DEBUG:teuthology.orchestra.run.smithi120:> sudo /usr/sbin/setenforce permissive 2024-09-11T03:04:58.176 DEBUG:teuthology.orchestra.run.smithi165:> sudo /usr/sbin/setenforce permissive 2024-09-11T03:04:58.210 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-11T03:04:58.220 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-09-11T03:04:58.223 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-09-11T03:04:58.342 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-11T03:04:58.354 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-09-11T03:04:58.383 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi050.front.sepia.ceph.com,smithi120.front.sepia.ceph.com,smithi165.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-11T03:08:55.320 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi050.front.sepia.ceph.com'), Remote(name='ubuntu@smithi120.front.sepia.ceph.com'), Remote(name='ubuntu@smithi165.front.sepia.ceph.com')] 2024-09-11T03:08:55.321 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-11T03:08:55.322 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:08:55.411 DEBUG:teuthology.orchestra.run.smithi050:> true 2024-09-11T03:08:55.497 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-11T03:08:55.497 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-11T03:08:55.498 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:08:55.600 DEBUG:teuthology.orchestra.run.smithi120:> true 2024-09-11T03:08:55.676 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-11T03:08:55.677 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-09-11T03:08:55.677 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T03:08:55.777 DEBUG:teuthology.orchestra.run.smithi165:> true 2024-09-11T03:08:55.856 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-09-11T03:08:55.857 INFO:teuthology.run_tasks:Running task clock... 2024-09-11T03:08:55.867 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-11T03:08:55.868 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-11T03:08:55.868 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-09-11T03:08:55.871 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-11T03:08:55.871 DEBUG:teuthology.orchestra.run.smithi120:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T03:08:55.873 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-11T03:08:55.873 DEBUG:teuthology.orchestra.run.smithi165:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T03:08:55.900 INFO:teuthology.orchestra.run.smithi050.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-11T03:08:55.901 INFO:teuthology.orchestra.run.smithi120.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-11T03:08:55.916 INFO:teuthology.orchestra.run.smithi050.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-11T03:08:55.916 INFO:teuthology.orchestra.run.smithi120.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-11T03:08:55.927 INFO:teuthology.orchestra.run.smithi165.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-11T03:08:55.941 INFO:teuthology.orchestra.run.smithi120.stderr:sudo: ntpd: command not found 2024-09-11T03:08:55.941 INFO:teuthology.orchestra.run.smithi050.stderr:sudo: ntpd: command not found 2024-09-11T03:08:55.942 INFO:teuthology.orchestra.run.smithi165.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-11T03:08:55.952 INFO:teuthology.orchestra.run.smithi120.stdout:506 Cannot talk to daemon 2024-09-11T03:08:55.953 INFO:teuthology.orchestra.run.smithi050.stdout:506 Cannot talk to daemon 2024-09-11T03:08:55.967 INFO:teuthology.orchestra.run.smithi165.stderr:sudo: ntpd: command not found 2024-09-11T03:08:55.967 INFO:teuthology.orchestra.run.smithi120.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-11T03:08:55.968 INFO:teuthology.orchestra.run.smithi050.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-11T03:08:55.978 INFO:teuthology.orchestra.run.smithi165.stdout:506 Cannot talk to daemon 2024-09-11T03:08:55.981 INFO:teuthology.orchestra.run.smithi120.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-11T03:08:55.983 INFO:teuthology.orchestra.run.smithi050.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-11T03:08:55.992 INFO:teuthology.orchestra.run.smithi165.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-11T03:08:56.006 INFO:teuthology.orchestra.run.smithi165.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-11T03:08:56.035 INFO:teuthology.orchestra.run.smithi120.stderr:bash: line 1: ntpq: command not found 2024-09-11T03:08:56.039 INFO:teuthology.orchestra.run.smithi120.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-11T03:08:56.039 INFO:teuthology.orchestra.run.smithi120.stdout:=============================================================================== 2024-09-11T03:08:56.039 INFO:teuthology.orchestra.run.smithi120.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:08:56.039 INFO:teuthology.orchestra.run.smithi120.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:08:56.039 INFO:teuthology.orchestra.run.smithi120.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:08:56.039 INFO:teuthology.orchestra.run.smithi120.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:08:56.047 INFO:teuthology.orchestra.run.smithi050.stderr:bash: line 1: ntpq: command not found 2024-09-11T03:08:56.051 INFO:teuthology.orchestra.run.smithi050.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-11T03:08:56.051 INFO:teuthology.orchestra.run.smithi050.stdout:=============================================================================== 2024-09-11T03:08:56.051 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:08:56.051 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:08:56.051 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:08:56.052 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:08:56.064 INFO:teuthology.orchestra.run.smithi165.stderr:bash: line 1: ntpq: command not found 2024-09-11T03:08:56.067 INFO:teuthology.orchestra.run.smithi165.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-11T03:08:56.067 INFO:teuthology.orchestra.run.smithi165.stdout:=============================================================================== 2024-09-11T03:08:56.067 INFO:teuthology.orchestra.run.smithi165.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:08:56.068 INFO:teuthology.orchestra.run.smithi165.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:08:56.068 INFO:teuthology.orchestra.run.smithi165.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:08:56.068 INFO:teuthology.orchestra.run.smithi165.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:08:56.068 INFO:teuthology.run_tasks:Running task pexec... 2024-09-11T03:08:56.077 INFO:teuthology.task.pexec:Executing custom commands... 2024-09-11T03:08:56.077 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi050.front.sepia.ceph.com 2024-09-11T03:08:56.077 DEBUG:teuthology.orchestra.run.smithi050:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-11T03:08:56.078 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi120.front.sepia.ceph.com 2024-09-11T03:08:56.078 DEBUG:teuthology.orchestra.run.smithi120:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-11T03:08:56.078 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi165.front.sepia.ceph.com 2024-09-11T03:08:56.078 DEBUG:teuthology.orchestra.run.smithi165:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-11T03:08:56.431 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:08:56.433 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:08:56.433 INFO:teuthology.orchestra.run.smithi120.stdout: Package Architecture Version Repository Size 2024-09-11T03:08:56.433 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:08:56.433 INFO:teuthology.orchestra.run.smithi120.stdout:Removing: 2024-09-11T03:08:56.433 INFO:teuthology.orchestra.run.smithi120.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-11T03:08:56.433 INFO:teuthology.orchestra.run.smithi120.stdout:Removing unused dependencies: 2024-09-11T03:08:56.433 INFO:teuthology.orchestra.run.smithi120.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-11T03:08:56.433 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:08:56.434 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:08:56.434 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:08:56.434 INFO:teuthology.orchestra.run.smithi120.stdout:Remove 2 Packages 2024-09-11T03:08:56.434 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:08:56.434 INFO:teuthology.orchestra.run.smithi120.stdout:Freed space: 5.5 M 2024-09-11T03:08:56.434 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:08:56.437 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:08:56.438 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:08:56.457 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:08:56.460 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:08:56.469 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:08:56.469 INFO:teuthology.orchestra.run.smithi165.stdout: Package Architecture Version Repository Size 2024-09-11T03:08:56.469 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:08:56.469 INFO:teuthology.orchestra.run.smithi165.stdout:Removing: 2024-09-11T03:08:56.469 INFO:teuthology.orchestra.run.smithi165.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-11T03:08:56.469 INFO:teuthology.orchestra.run.smithi165.stdout:Removing unused dependencies: 2024-09-11T03:08:56.469 INFO:teuthology.orchestra.run.smithi165.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-11T03:08:56.470 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:08:56.470 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:08:56.470 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:08:56.470 INFO:teuthology.orchestra.run.smithi165.stdout:Remove 2 Packages 2024-09-11T03:08:56.470 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:08:56.470 INFO:teuthology.orchestra.run.smithi165.stdout:Freed space: 5.5 M 2024-09-11T03:08:56.470 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:08:56.473 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:08:56.473 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:08:56.474 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:08:56.474 INFO:teuthology.orchestra.run.smithi050.stdout: Package Architecture Version Repository Size 2024-09-11T03:08:56.474 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:08:56.474 INFO:teuthology.orchestra.run.smithi050.stdout:Removing: 2024-09-11T03:08:56.474 INFO:teuthology.orchestra.run.smithi050.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-11T03:08:56.474 INFO:teuthology.orchestra.run.smithi050.stdout:Removing unused dependencies: 2024-09-11T03:08:56.475 INFO:teuthology.orchestra.run.smithi050.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-11T03:08:56.475 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:08:56.475 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:08:56.475 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:08:56.475 INFO:teuthology.orchestra.run.smithi050.stdout:Remove 2 Packages 2024-09-11T03:08:56.475 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:08:56.475 INFO:teuthology.orchestra.run.smithi050.stdout:Freed space: 5.5 M 2024-09-11T03:08:56.475 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:08:56.478 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:08:56.479 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:08:56.494 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:08:56.495 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:08:56.535 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:08:56.535 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:08:56.544 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:08:56.544 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:08:56.635 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:08:56.683 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:08:56.683 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:08:56.724 INFO:teuthology.orchestra.run.smithi120.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-11T03:08:56.754 INFO:teuthology.orchestra.run.smithi165.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-11T03:08:56.754 INFO:teuthology.orchestra.run.smithi050.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-11T03:08:56.788 INFO:teuthology.orchestra.run.smithi120.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-11T03:08:56.815 INFO:teuthology.orchestra.run.smithi165.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-11T03:08:56.818 INFO:teuthology.orchestra.run.smithi050.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-11T03:08:57.279 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-11T03:08:57.279 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-11T03:08:57.281 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-11T03:08:57.282 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-11T03:08:57.291 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-11T03:08:57.291 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-11T03:08:57.509 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-11T03:08:57.509 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:08:57.509 INFO:teuthology.orchestra.run.smithi050.stdout:Removed: 2024-09-11T03:08:57.509 INFO:teuthology.orchestra.run.smithi050.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-11T03:08:57.509 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:08:57.509 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:08:57.518 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-11T03:08:57.518 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:08:57.518 INFO:teuthology.orchestra.run.smithi120.stdout:Removed: 2024-09-11T03:08:57.518 INFO:teuthology.orchestra.run.smithi120.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-11T03:08:57.518 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:08:57.518 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:08:57.542 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-11T03:08:57.542 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:08:57.542 INFO:teuthology.orchestra.run.smithi165.stdout:Removed: 2024-09-11T03:08:57.542 INFO:teuthology.orchestra.run.smithi165.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-11T03:08:57.543 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:08:57.543 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:08:58.344 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:02 ago on Wed 11 Sep 2024 03:07:56 AM UTC. 2024-09-11T03:08:58.366 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:00:57 ago on Wed 11 Sep 2024 03:08:01 AM UTC. 2024-09-11T03:08:58.415 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:02 ago on Wed 11 Sep 2024 03:07:56 AM UTC. 2024-09-11T03:08:58.486 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:08:58.486 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:08:58.486 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repository Size 2024-09-11T03:08:58.486 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:08:58.486 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:08:58.487 INFO:teuthology.orchestra.run.smithi120.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-11T03:08:58.487 INFO:teuthology.orchestra.run.smithi120.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-11T03:08:58.487 INFO:teuthology.orchestra.run.smithi120.stdout: runc x86_64 4:1.1.13-4.el9 appstream 3.2 M 2024-09-11T03:08:58.487 INFO:teuthology.orchestra.run.smithi120.stdout:Installing dependencies: 2024-09-11T03:08:58.487 INFO:teuthology.orchestra.run.smithi120.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-11T03:08:58.487 INFO:teuthology.orchestra.run.smithi120.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-11T03:08:58.487 INFO:teuthology.orchestra.run.smithi120.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-11T03:08:58.487 INFO:teuthology.orchestra.run.smithi120.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-11T03:08:58.487 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:08:58.487 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:08:58.487 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:08:58.487 INFO:teuthology.orchestra.run.smithi120.stdout:Install 7 Packages 2024-09-11T03:08:58.487 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:08:58.499 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 5.2 M 2024-09-11T03:08:58.499 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 19 M 2024-09-11T03:08:58.499 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:08:58.504 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:08:58.506 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:08:58.506 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-09-11T03:08:58.506 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:08:58.506 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:08:58.506 INFO:teuthology.orchestra.run.smithi050.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-11T03:08:58.506 INFO:teuthology.orchestra.run.smithi050.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-11T03:08:58.506 INFO:teuthology.orchestra.run.smithi050.stdout: runc x86_64 4:1.1.13-4.el9 appstream 3.2 M 2024-09-11T03:08:58.506 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-09-11T03:08:58.506 INFO:teuthology.orchestra.run.smithi050.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-11T03:08:58.506 INFO:teuthology.orchestra.run.smithi050.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-11T03:08:58.506 INFO:teuthology.orchestra.run.smithi050.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-11T03:08:58.506 INFO:teuthology.orchestra.run.smithi050.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-11T03:08:58.506 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:08:58.507 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:08:58.507 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:08:58.507 INFO:teuthology.orchestra.run.smithi050.stdout:Install 7 Packages 2024-09-11T03:08:58.507 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:08:58.526 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 5.2 M 2024-09-11T03:08:58.526 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 19 M 2024-09-11T03:08:58.526 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:08:58.549 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:08:58.550 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:08:58.550 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repository Size 2024-09-11T03:08:58.550 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:08:58.550 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:08:58.550 INFO:teuthology.orchestra.run.smithi165.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-11T03:08:58.551 INFO:teuthology.orchestra.run.smithi165.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-11T03:08:58.551 INFO:teuthology.orchestra.run.smithi165.stdout: runc x86_64 4:1.1.13-4.el9 appstream 3.2 M 2024-09-11T03:08:58.551 INFO:teuthology.orchestra.run.smithi165.stdout:Installing dependencies: 2024-09-11T03:08:58.551 INFO:teuthology.orchestra.run.smithi165.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-11T03:08:58.551 INFO:teuthology.orchestra.run.smithi165.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-11T03:08:58.551 INFO:teuthology.orchestra.run.smithi165.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-11T03:08:58.551 INFO:teuthology.orchestra.run.smithi165.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-11T03:08:58.552 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:08:58.552 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:08:58.552 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:08:58.552 INFO:teuthology.orchestra.run.smithi165.stdout:Install 7 Packages 2024-09-11T03:08:58.552 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:08:58.556 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 5.2 M 2024-09-11T03:08:58.556 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 19 M 2024-09-11T03:08:58.557 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:08:58.914 INFO:teuthology.orchestra.run.smithi165.stdout:(1/7): nvmetcli-0.7-3.el9.noarch.rpm 304 kB/s | 44 kB 00:00 2024-09-11T03:08:58.939 INFO:teuthology.orchestra.run.smithi165.stdout:(2/7): libnvme-1.9-3.el9.x86_64.rpm 618 kB/s | 106 kB 00:00 2024-09-11T03:08:59.015 INFO:teuthology.orchestra.run.smithi165.stdout:(3/7): python3-kmod-0.9-32.el9.x86_64.rpm 1.1 MB/s | 84 kB 00:00 2024-09-11T03:08:59.040 INFO:teuthology.orchestra.run.smithi165.stdout:(4/7): python3-configshell-1.1.30-1.el9.noarch. 570 kB/s | 72 kB 00:00 2024-09-11T03:08:59.098 INFO:teuthology.orchestra.run.smithi165.stdout:(5/7): nvme-cli-2.9.1-6.el9.x86_64.rpm 2.7 MB/s | 906 kB 00:00 2024-09-11T03:08:59.165 INFO:teuthology.orchestra.run.smithi165.stdout:(6/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 5.4 MB/s | 837 kB 00:00 2024-09-11T03:08:59.188 INFO:teuthology.orchestra.run.smithi120.stdout:(1/7): nvmetcli-0.7-3.el9.noarch.rpm 289 kB/s | 44 kB 00:00 2024-09-11T03:08:59.213 INFO:teuthology.orchestra.run.smithi120.stdout:(2/7): libnvme-1.9-3.el9.x86_64.rpm 591 kB/s | 106 kB 00:00 2024-09-11T03:08:59.281 INFO:teuthology.orchestra.run.smithi120.stdout:(3/7): python3-kmod-0.9-32.el9.x86_64.rpm 1.2 MB/s | 84 kB 00:00 2024-09-11T03:08:59.293 INFO:teuthology.orchestra.run.smithi165.stdout:(7/7): runc-1.1.13-4.el9.x86_64.rpm 13 MB/s | 3.2 MB 00:00 2024-09-11T03:08:59.293 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:08:59.293 INFO:teuthology.orchestra.run.smithi165.stdout:Total 7.0 MB/s | 5.2 MB 00:00 2024-09-11T03:08:59.306 INFO:teuthology.orchestra.run.smithi120.stdout:(4/7): python3-configshell-1.1.30-1.el9.noarch. 611 kB/s | 72 kB 00:00 2024-09-11T03:08:59.339 INFO:teuthology.orchestra.run.smithi120.stdout:(5/7): nvme-cli-2.9.1-6.el9.x86_64.rpm 2.9 MB/s | 906 kB 00:00 2024-09-11T03:08:59.401 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:08:59.415 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:08:59.415 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:08:59.448 INFO:teuthology.orchestra.run.smithi120.stdout:(6/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 4.9 MB/s | 837 kB 00:00 2024-09-11T03:08:59.605 INFO:teuthology.orchestra.run.smithi050.stdout:(1/7): nvmetcli-0.7-3.el9.noarch.rpm 76 kB/s | 44 kB 00:00 2024-09-11T03:08:59.705 INFO:teuthology.orchestra.run.smithi050.stdout:(2/7): libnvme-1.9-3.el9.x86_64.rpm 156 kB/s | 106 kB 00:00 2024-09-11T03:08:59.713 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:08:59.713 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:09:00.082 INFO:teuthology.orchestra.run.smithi120.stdout:(7/7): runc-1.1.13-4.el9.x86_64.rpm 4.1 MB/s | 3.2 MB 00:00 2024-09-11T03:09:00.082 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:09:00.082 INFO:teuthology.orchestra.run.smithi120.stdout:Total 3.3 MB/s | 5.2 MB 00:01 2024-09-11T03:09:00.181 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:09:00.201 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:09:00.216 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:09:00.216 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:09:00.222 INFO:teuthology.orchestra.run.smithi050.stdout:(3/7): python3-configshell-1.1.30-1.el9.noarch. 116 kB/s | 72 kB 00:00 2024-09-11T03:09:00.260 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2024-09-11T03:09:00.295 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/7 2024-09-11T03:09:00.323 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/7 2024-09-11T03:09:00.406 INFO:teuthology.orchestra.run.smithi050.stdout:(4/7): python3-kmod-0.9-32.el9.x86_64.rpm 120 kB/s | 84 kB 00:00 2024-09-11T03:09:00.521 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:09:00.521 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:09:00.533 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/7 2024-09-11T03:09:00.563 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-11T03:09:00.689 INFO:teuthology.orchestra.run.smithi050.stdout:(5/7): nvme-cli-2.9.1-6.el9.x86_64.rpm 543 kB/s | 906 kB 00:01 2024-09-11T03:09:00.806 INFO:teuthology.orchestra.run.smithi050.stdout:(6/7): runc-1.1.13-4.el9.x86_64.rpm 7.9 MB/s | 3.2 MB 00:00 2024-09-11T03:09:00.986 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:09:01.002 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-11T03:09:01.036 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/7 2024-09-11T03:09:01.067 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2024-09-11T03:09:01.102 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/7 2024-09-11T03:09:01.131 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/7 2024-09-11T03:09:01.150 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/7 2024-09-11T03:09:01.210 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-11T03:09:01.337 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/7 2024-09-11T03:09:01.379 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-11T03:09:01.607 INFO:teuthology.orchestra.run.smithi050.stdout:(7/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 605 kB/s | 837 kB 00:01 2024-09-11T03:09:01.607 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:09:01.607 INFO:teuthology.orchestra.run.smithi050.stdout:Total 1.7 MB/s | 5.2 MB 00:03 2024-09-11T03:09:01.727 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:09:01.744 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:09:01.744 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:09:01.820 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-11T03:09:01.849 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/7 2024-09-11T03:09:01.966 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/7 2024-09-11T03:09:02.026 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-11T03:09:02.063 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:09:02.064 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:09:02.145 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-11T03:09:02.145 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/7 2024-09-11T03:09:02.145 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/7 2024-09-11T03:09:02.145 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/7 2024-09-11T03:09:02.145 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/7 2024-09-11T03:09:02.145 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/7 2024-09-11T03:09:02.145 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2024-09-11T03:09:02.527 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-11T03:09:02.528 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:09:02.528 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:09:02.528 INFO:teuthology.orchestra.run.smithi165.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-11T03:09:02.528 INFO:teuthology.orchestra.run.smithi165.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-11T03:09:02.528 INFO:teuthology.orchestra.run.smithi165.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-11T03:09:02.528 INFO:teuthology.orchestra.run.smithi165.stdout: runc-4:1.1.13-4.el9.x86_64 2024-09-11T03:09:02.528 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:09:02.528 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:09:02.713 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:09:02.819 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2024-09-11T03:09:02.859 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/7 2024-09-11T03:09:02.898 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/7 2024-09-11T03:09:02.939 DEBUG:teuthology.parallel:result is None 2024-09-11T03:09:02.999 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-11T03:09:03.000 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/7 2024-09-11T03:09:03.000 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/7 2024-09-11T03:09:03.000 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/7 2024-09-11T03:09:03.000 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/7 2024-09-11T03:09:03.000 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/7 2024-09-11T03:09:03.000 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2024-09-11T03:09:03.137 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/7 2024-09-11T03:09:03.170 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-11T03:09:03.341 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-11T03:09:03.341 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:09:03.342 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:09:03.342 INFO:teuthology.orchestra.run.smithi120.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-11T03:09:03.342 INFO:teuthology.orchestra.run.smithi120.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-11T03:09:03.342 INFO:teuthology.orchestra.run.smithi120.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-11T03:09:03.342 INFO:teuthology.orchestra.run.smithi120.stdout: runc-4:1.1.13-4.el9.x86_64 2024-09-11T03:09:03.342 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:09:03.342 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:09:03.665 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-11T03:09:03.711 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/7 2024-09-11T03:09:03.734 DEBUG:teuthology.parallel:result is None 2024-09-11T03:09:03.821 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/7 2024-09-11T03:09:03.896 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-11T03:09:04.908 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-11T03:09:04.908 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/7 2024-09-11T03:09:04.908 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/7 2024-09-11T03:09:04.908 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/7 2024-09-11T03:09:04.908 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/7 2024-09-11T03:09:04.908 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/7 2024-09-11T03:09:04.908 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2024-09-11T03:09:05.294 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-11T03:09:05.294 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:09:05.294 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:09:05.295 INFO:teuthology.orchestra.run.smithi050.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-11T03:09:05.295 INFO:teuthology.orchestra.run.smithi050.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-11T03:09:05.295 INFO:teuthology.orchestra.run.smithi050.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-11T03:09:05.295 INFO:teuthology.orchestra.run.smithi050.stdout: runc-4:1.1.13-4.el9.x86_64 2024-09-11T03:09:05.295 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:09:05.295 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:09:05.707 DEBUG:teuthology.parallel:result is None 2024-09-11T03:09:05.707 INFO:teuthology.run_tasks:Running task install... 2024-09-11T03:09:05.716 DEBUG:teuthology.task.install:project ceph 2024-09-11T03:09:05.716 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '8f219c476cb4f26fc5719c661c0323719a45cb30'}} 2024-09-11T03:09:05.716 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '8f219c476cb4f26fc5719c661c0323719a45cb30'} 2024-09-11T03:09:05.716 INFO:teuthology.task.install:Using flavor: default 2024-09-11T03:09:05.722 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2024-09-11T03:09:05.722 INFO:teuthology.task.install:extra packages: [] 2024-09-11T03:09:05.722 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': '8f219c476cb4f26fc5719c661c0323719a45cb30', 'tag': None, 'wait_for_package': False} 2024-09-11T03:09:05.723 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=8f219c476cb4f26fc5719c661c0323719a45cb30 2024-09-11T03:09:05.725 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': '8f219c476cb4f26fc5719c661c0323719a45cb30', 'tag': None, 'wait_for_package': False} 2024-09-11T03:09:05.725 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=8f219c476cb4f26fc5719c661c0323719a45cb30 2024-09-11T03:09:05.726 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': '8f219c476cb4f26fc5719c661c0323719a45cb30', 'tag': None, 'wait_for_package': False} 2024-09-11T03:09:05.726 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=8f219c476cb4f26fc5719c661c0323719a45cb30 2024-09-11T03:09:05.872 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/centos/9/flavors/default/ 2024-09-11T03:09:05.873 INFO:teuthology.task.install.rpm:Package version is 19.3.0-4854.g8f219c47 2024-09-11T03:09:05.889 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/centos/9/flavors/default/ 2024-09-11T03:09:05.889 INFO:teuthology.task.install.rpm:Package version is 19.3.0-4854.g8f219c47 2024-09-11T03:09:05.890 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/centos/9/flavors/default/ 2024-09-11T03:09:05.890 INFO:teuthology.task.install.rpm:Package version is 19.3.0-4854.g8f219c47 2024-09-11T03:09:06.003 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/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/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/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/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-11T03:09:06.003 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:09:06.003 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-11T03:09:06.015 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/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/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/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/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-11T03:09:06.016 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-11T03:09:06.016 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-11T03:09:06.019 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/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/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/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/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-11T03:09:06.019 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-11T03:09:06.019 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-11T03:09:06.030 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-09-11T03:09:06.031 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/8f219c476cb4f26fc5719c661c0323719a45cb30/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-11T03:09:06.051 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-09-11T03:09:06.051 DEBUG:teuthology.orchestra.run.smithi165:> 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/8f219c476cb4f26fc5719c661c0323719a45cb30/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-11T03:09:06.053 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-09-11T03:09:06.053 DEBUG:teuthology.orchestra.run.smithi120:> 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/8f219c476cb4f26fc5719c661c0323719a45cb30/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-11T03:09:06.098 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-09-11T03:09:06.123 DEBUG:teuthology.orchestra.run.smithi165:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-09-11T03:09:06.124 DEBUG:teuthology.orchestra.run.smithi120:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-09-11T03:09:06.175 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-09-11T03:09:06.204 DEBUG:teuthology.orchestra.run.smithi165:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-09-11T03:09:06.205 DEBUG:teuthology.orchestra.run.smithi120:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-09-11T03:09:06.240 INFO:teuthology.orchestra.run.smithi050.stdout:check_obsoletes = 1 2024-09-11T03:09:06.242 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum clean all 2024-09-11T03:09:06.271 INFO:teuthology.orchestra.run.smithi165.stdout:check_obsoletes = 1 2024-09-11T03:09:06.272 INFO:teuthology.orchestra.run.smithi120.stdout:check_obsoletes = 1 2024-09-11T03:09:06.273 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum clean all 2024-09-11T03:09:06.274 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum clean all 2024-09-11T03:09:06.505 INFO:teuthology.orchestra.run.smithi050.stdout:45 files removed 2024-09-11T03:09:06.508 INFO:teuthology.orchestra.run.smithi120.stdout:45 files removed 2024-09-11T03:09:06.510 INFO:teuthology.orchestra.run.smithi165.stdout:45 files removed 2024-09-11T03:09:06.532 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-radosgw 2024-09-11T03:09:06.537 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install ceph-radosgw 2024-09-11T03:09:06.538 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install ceph-radosgw 2024-09-11T03:09:07.073 INFO:teuthology.orchestra.run.smithi165.stdout:ceph packages for x86_64 338 kB/s | 84 kB 00:00 2024-09-11T03:09:07.091 INFO:teuthology.orchestra.run.smithi120.stdout:ceph packages for x86_64 313 kB/s | 84 kB 00:00 2024-09-11T03:09:07.105 INFO:teuthology.orchestra.run.smithi050.stdout:ceph packages for x86_64 308 kB/s | 84 kB 00:00 2024-09-11T03:09:07.349 INFO:teuthology.orchestra.run.smithi165.stdout:ceph noarch packages 104 kB/s | 24 kB 00:00 2024-09-11T03:09:07.384 INFO:teuthology.orchestra.run.smithi120.stdout:ceph noarch packages 97 kB/s | 24 kB 00:00 2024-09-11T03:09:07.399 INFO:teuthology.orchestra.run.smithi050.stdout:ceph noarch packages 97 kB/s | 24 kB 00:00 2024-09-11T03:09:07.624 INFO:teuthology.orchestra.run.smithi165.stdout:ceph source packages 8.1 kB/s | 1.9 kB 00:00 2024-09-11T03:09:07.668 INFO:teuthology.orchestra.run.smithi120.stdout:ceph source packages 7.8 kB/s | 1.9 kB 00:00 2024-09-11T03:09:07.682 INFO:teuthology.orchestra.run.smithi050.stdout:ceph source packages 7.9 kB/s | 1.9 kB 00:00 2024-09-11T03:09:08.135 INFO:teuthology.orchestra.run.smithi120.stdout:CentOS Stream 9 - BaseOS 19 MB/s | 8.2 MB 00:00 2024-09-11T03:09:08.307 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - BaseOS 14 MB/s | 8.2 MB 00:00 2024-09-11T03:09:09.574 INFO:teuthology.orchestra.run.smithi165.stdout:CentOS Stream 9 - BaseOS 4.3 MB/s | 8.2 MB 00:01 2024-09-11T03:09:10.069 INFO:teuthology.orchestra.run.smithi120.stdout:CentOS Stream 9 - AppStream 24 MB/s | 20 MB 00:00 2024-09-11T03:09:11.709 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - AppStream 9.1 MB/s | 20 MB 00:02 2024-09-11T03:09:15.179 INFO:teuthology.orchestra.run.smithi120.stdout:CentOS Stream 9 - CRB 5.0 MB/s | 6.5 MB 00:01 2024-09-11T03:09:16.259 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - CRB 11 MB/s | 6.5 MB 00:00 2024-09-11T03:09:16.980 INFO:teuthology.orchestra.run.smithi120.stdout:CentOS Stream 9 - Extras packages 42 kB/s | 19 kB 00:00 2024-09-11T03:09:17.952 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - Extras packages 47 kB/s | 19 kB 00:00 2024-09-11T03:09:18.579 INFO:teuthology.orchestra.run.smithi120.stdout:Extra Packages for Enterprise Linux 15 MB/s | 23 MB 00:01 2024-09-11T03:09:19.981 INFO:teuthology.orchestra.run.smithi050.stdout:Extra Packages for Enterprise Linux 12 MB/s | 23 MB 00:01 2024-09-11T03:09:24.016 INFO:teuthology.orchestra.run.smithi120.stdout:lab-extras 29 kB/s | 1.7 kB 00:00 2024-09-11T03:09:25.537 INFO:teuthology.orchestra.run.smithi050.stdout:lab-extras 31 kB/s | 1.7 kB 00:00 2024-09-11T03:09:26.412 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:09:26.414 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:09:26.414 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repository Size 2024-09-11T03:09:26.414 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:09:26.414 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:09:26.414 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-radosgw x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 11 M 2024-09-11T03:09:26.414 INFO:teuthology.orchestra.run.smithi120.stdout:Upgrading: 2024-09-11T03:09:26.414 INFO:teuthology.orchestra.run.smithi120.stdout: librados2 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 3.5 M 2024-09-11T03:09:26.414 INFO:teuthology.orchestra.run.smithi120.stdout: librbd1 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 3.2 M 2024-09-11T03:09:26.415 INFO:teuthology.orchestra.run.smithi120.stdout:Installing dependencies: 2024-09-11T03:09:26.415 INFO:teuthology.orchestra.run.smithi120.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-11T03:09:26.415 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-base x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 5.5 M 2024-09-11T03:09:26.415 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-common x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 22 M 2024-09-11T03:09:26.415 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-selinux x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 25 k 2024-09-11T03:09:26.415 INFO:teuthology.orchestra.run.smithi120.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-09-11T03:09:26.415 INFO:teuthology.orchestra.run.smithi120.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-11T03:09:26.415 INFO:teuthology.orchestra.run.smithi120.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-11T03:09:26.415 INFO:teuthology.orchestra.run.smithi120.stdout: libcephfs2 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 755 k 2024-09-11T03:09:26.415 INFO:teuthology.orchestra.run.smithi120.stdout: libnbd x86_64 1.20.2-2.el9 appstream 171 k 2024-09-11T03:09:26.415 INFO:teuthology.orchestra.run.smithi120.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-11T03:09:26.415 INFO:teuthology.orchestra.run.smithi120.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-11T03:09:26.416 INFO:teuthology.orchestra.run.smithi120.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-11T03:09:26.416 INFO:teuthology.orchestra.run.smithi120.stdout: libradosstriper1 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 507 k 2024-09-11T03:09:26.416 INFO:teuthology.orchestra.run.smithi120.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-11T03:09:26.416 INFO:teuthology.orchestra.run.smithi120.stdout: librgw2 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 5.5 M 2024-09-11T03:09:26.416 INFO:teuthology.orchestra.run.smithi120.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-11T03:09:26.416 INFO:teuthology.orchestra.run.smithi120.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-11T03:09:26.416 INFO:teuthology.orchestra.run.smithi120.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-11T03:09:26.416 INFO:teuthology.orchestra.run.smithi120.stdout: python3-ceph-argparse x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 45 k 2024-09-11T03:09:26.416 INFO:teuthology.orchestra.run.smithi120.stdout: python3-ceph-common x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 143 k 2024-09-11T03:09:26.416 INFO:teuthology.orchestra.run.smithi120.stdout: python3-cephfs x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 161 k 2024-09-11T03:09:26.416 INFO:teuthology.orchestra.run.smithi120.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-11T03:09:26.416 INFO:teuthology.orchestra.run.smithi120.stdout: python3-rados x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 321 k 2024-09-11T03:09:26.416 INFO:teuthology.orchestra.run.smithi120.stdout: python3-rbd x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 306 k 2024-09-11T03:09:26.417 INFO:teuthology.orchestra.run.smithi120.stdout: python3-rgw x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 99 k 2024-09-11T03:09:26.417 INFO:teuthology.orchestra.run.smithi120.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-09-11T03:09:26.417 INFO:teuthology.orchestra.run.smithi120.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-09-11T03:09:26.417 INFO:teuthology.orchestra.run.smithi120.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-11T03:09:26.417 INFO:teuthology.orchestra.run.smithi120.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-11T03:09:26.417 INFO:teuthology.orchestra.run.smithi120.stdout:Installing weak dependencies: 2024-09-11T03:09:26.417 INFO:teuthology.orchestra.run.smithi120.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-09-11T03:09:26.417 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:09:26.417 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:09:26.417 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:09:26.417 INFO:teuthology.orchestra.run.smithi120.stdout:Install 31 Packages 2024-09-11T03:09:26.417 INFO:teuthology.orchestra.run.smithi120.stdout:Upgrade 2 Packages 2024-09-11T03:09:26.418 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:09:26.418 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 62 M 2024-09-11T03:09:26.418 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:09:28.023 INFO:teuthology.orchestra.run.smithi165.stdout:CentOS Stream 9 - AppStream 1.2 MB/s | 20 MB 00:17 2024-09-11T03:09:28.046 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:09:28.048 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:09:28.048 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-09-11T03:09:28.048 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:09:28.048 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:09:28.048 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-radosgw x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 11 M 2024-09-11T03:09:28.049 INFO:teuthology.orchestra.run.smithi050.stdout:Upgrading: 2024-09-11T03:09:28.049 INFO:teuthology.orchestra.run.smithi050.stdout: librados2 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 3.5 M 2024-09-11T03:09:28.049 INFO:teuthology.orchestra.run.smithi050.stdout: librbd1 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 3.2 M 2024-09-11T03:09:28.049 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-09-11T03:09:28.049 INFO:teuthology.orchestra.run.smithi050.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-11T03:09:28.049 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-base x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 5.5 M 2024-09-11T03:09:28.049 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-common x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 22 M 2024-09-11T03:09:28.049 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-selinux x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 25 k 2024-09-11T03:09:28.049 INFO:teuthology.orchestra.run.smithi050.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-09-11T03:09:28.049 INFO:teuthology.orchestra.run.smithi050.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-11T03:09:28.049 INFO:teuthology.orchestra.run.smithi050.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-11T03:09:28.049 INFO:teuthology.orchestra.run.smithi050.stdout: libcephfs2 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 755 k 2024-09-11T03:09:28.049 INFO:teuthology.orchestra.run.smithi050.stdout: libnbd x86_64 1.20.2-2.el9 appstream 171 k 2024-09-11T03:09:28.050 INFO:teuthology.orchestra.run.smithi050.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-11T03:09:28.050 INFO:teuthology.orchestra.run.smithi050.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-11T03:09:28.050 INFO:teuthology.orchestra.run.smithi050.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-11T03:09:28.050 INFO:teuthology.orchestra.run.smithi050.stdout: libradosstriper1 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 507 k 2024-09-11T03:09:28.050 INFO:teuthology.orchestra.run.smithi050.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-11T03:09:28.050 INFO:teuthology.orchestra.run.smithi050.stdout: librgw2 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 5.5 M 2024-09-11T03:09:28.050 INFO:teuthology.orchestra.run.smithi050.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-11T03:09:28.050 INFO:teuthology.orchestra.run.smithi050.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-11T03:09:28.050 INFO:teuthology.orchestra.run.smithi050.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-11T03:09:28.050 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ceph-argparse x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 45 k 2024-09-11T03:09:28.050 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ceph-common x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 143 k 2024-09-11T03:09:28.050 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cephfs x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 161 k 2024-09-11T03:09:28.050 INFO:teuthology.orchestra.run.smithi050.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rados x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 321 k 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rbd x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 306 k 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rgw x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 99 k 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout:Installing weak dependencies: 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout:Install 31 Packages 2024-09-11T03:09:28.051 INFO:teuthology.orchestra.run.smithi050.stdout:Upgrade 2 Packages 2024-09-11T03:09:28.052 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:09:28.052 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 62 M 2024-09-11T03:09:28.052 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:09:28.772 INFO:teuthology.orchestra.run.smithi050.stdout:(1/33): ceph-base-19.3.0-4854.g8f219c47.el9.x86 9.3 MB/s | 5.5 MB 00:00 2024-09-11T03:09:28.830 INFO:teuthology.orchestra.run.smithi050.stdout:(2/33): ceph-selinux-19.3.0-4854.g8f219c47.el9. 432 kB/s | 25 kB 00:00 2024-09-11T03:09:28.947 INFO:teuthology.orchestra.run.smithi050.stdout:(3/33): libcephfs2-19.3.0-4854.g8f219c47.el9.x8 6.3 MB/s | 755 kB 00:00 2024-09-11T03:09:29.089 INFO:teuthology.orchestra.run.smithi050.stdout:(4/33): ceph-radosgw-19.3.0-4854.g8f219c47.el9. 12 MB/s | 11 MB 00:00 2024-09-11T03:09:29.131 INFO:teuthology.orchestra.run.smithi050.stdout:(5/33): libradosstriper1-19.3.0-4854.g8f219c47. 2.7 MB/s | 507 kB 00:00 2024-09-11T03:09:29.382 INFO:teuthology.orchestra.run.smithi050.stdout:(6/33): ceph-common-19.3.0-4854.g8f219c47.el9.x 18 MB/s | 22 MB 00:01 2024-09-11T03:09:29.398 INFO:teuthology.orchestra.run.smithi050.stdout:(7/33): python3-ceph-argparse-19.3.0-4854.g8f21 169 kB/s | 45 kB 00:00 2024-09-11T03:09:29.432 INFO:teuthology.orchestra.run.smithi050.stdout:(8/33): python3-ceph-common-19.3.0-4854.g8f219c 2.8 MB/s | 143 kB 00:00 2024-09-11T03:09:29.465 INFO:teuthology.orchestra.run.smithi050.stdout:(9/33): python3-cephfs-19.3.0-4854.g8f219c47.el 2.4 MB/s | 161 kB 00:00 2024-09-11T03:09:29.499 INFO:teuthology.orchestra.run.smithi050.stdout:(10/33): python3-rados-19.3.0-4854.g8f219c47.el 4.7 MB/s | 321 kB 00:00 2024-09-11T03:09:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:(11/33): python3-rbd-19.3.0-4854.g8f219c47.el9. 4.5 MB/s | 306 kB 00:00 2024-09-11T03:09:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:(12/33): python3-rgw-19.3.0-4854.g8f219c47.el9. 1.7 MB/s | 99 kB 00:00 2024-09-11T03:09:29.642 INFO:teuthology.orchestra.run.smithi050.stdout:(13/33): librgw2-19.3.0-4854.g8f219c47.el9.x86_ 10 MB/s | 5.5 MB 00:00 2024-09-11T03:09:29.984 INFO:teuthology.orchestra.run.smithi120.stdout:(1/33): ceph-base-19.3.0-4854.g8f219c47.el9.x86 5.7 MB/s | 5.5 MB 00:00 2024-09-11T03:09:30.034 INFO:teuthology.orchestra.run.smithi120.stdout:(2/33): ceph-selinux-19.3.0-4854.g8f219c47.el9. 506 kB/s | 25 kB 00:00 2024-09-11T03:09:30.042 INFO:teuthology.orchestra.run.smithi050.stdout:(14/33): boost-program-options-1.75.0-8.el9.x86 210 kB/s | 107 kB 00:00 2024-09-11T03:09:30.150 INFO:teuthology.orchestra.run.smithi050.stdout:(15/33): libnbd-1.20.2-2.el9.x86_64.rpm 288 kB/s | 171 kB 00:00 2024-09-11T03:09:30.151 INFO:teuthology.orchestra.run.smithi120.stdout:(3/33): libcephfs2-19.3.0-4854.g8f219c47.el9.x8 6.3 MB/s | 755 kB 00:00 2024-09-11T03:09:30.176 INFO:teuthology.orchestra.run.smithi050.stdout:(16/33): librabbitmq-0.11.0-7.el9.x86_64.rpm 339 kB/s | 45 kB 00:00 2024-09-11T03:09:30.218 INFO:teuthology.orchestra.run.smithi050.stdout:(17/33): libpmemobj-1.12.1-1.el9.x86_64.rpm 278 kB/s | 160 kB 00:00 2024-09-11T03:09:30.326 INFO:teuthology.orchestra.run.smithi120.stdout:(4/33): ceph-radosgw-19.3.0-4854.g8f219c47.el9. 8.4 MB/s | 11 MB 00:01 2024-09-11T03:09:30.335 INFO:teuthology.orchestra.run.smithi050.stdout:(18/33): python3-prettytable-0.7.2-27.el9.noarc 362 kB/s | 42 kB 00:00 2024-09-11T03:09:30.351 INFO:teuthology.orchestra.run.smithi120.stdout:(5/33): libradosstriper1-19.3.0-4854.g8f219c47. 2.5 MB/s | 507 kB 00:00 2024-09-11T03:09:30.393 INFO:teuthology.orchestra.run.smithi050.stdout:(19/33): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.3 MB/s | 292 kB 00:00 2024-09-11T03:09:30.401 INFO:teuthology.orchestra.run.smithi120.stdout:(6/33): python3-ceph-argparse-19.3.0-4854.g8f21 904 kB/s | 45 kB 00:00 2024-09-11T03:09:30.452 INFO:teuthology.orchestra.run.smithi050.stdout:(20/33): librdkafka-1.6.1-102.el9.x86_64.rpm 2.1 MB/s | 662 kB 00:00 2024-09-11T03:09:30.460 INFO:teuthology.orchestra.run.smithi120.stdout:(7/33): python3-ceph-common-19.3.0-4854.g8f219c 2.4 MB/s | 143 kB 00:00 2024-09-11T03:09:30.542 INFO:teuthology.orchestra.run.smithi050.stdout:(21/33): qatlib-service-24.02.0-1.el9.x86_64.rp 242 kB/s | 36 kB 00:00 2024-09-11T03:09:30.603 INFO:teuthology.orchestra.run.smithi050.stdout:(22/33): qatzip-libs-1.2.0-1.el9.x86_64.rpm 316 kB/s | 47 kB 00:00 2024-09-11T03:09:30.628 INFO:teuthology.orchestra.run.smithi050.stdout:(23/33): qatlib-24.02.0-1.el9.x86_64.rpm 754 kB/s | 221 kB 00:00 2024-09-11T03:09:30.687 INFO:teuthology.orchestra.run.smithi050.stdout:(24/33): gperftools-libs-2.9.1-2.el9.x86_64.rpm 2.1 MB/s | 309 kB 00:00 2024-09-11T03:09:30.694 INFO:teuthology.orchestra.run.smithi120.stdout:(8/33): ceph-common-19.3.0-4854.g8f219c47.el9.x 13 MB/s | 22 MB 00:01 2024-09-11T03:09:30.712 INFO:teuthology.orchestra.run.smithi050.stdout:(25/33): libarrow-doc-9.0.0-11.el9.noarch.rpm 384 kB/s | 26 kB 00:00 2024-09-11T03:09:30.719 INFO:teuthology.orchestra.run.smithi120.stdout:(9/33): python3-cephfs-19.3.0-4854.g8f219c47.el 624 kB/s | 161 kB 00:00 2024-09-11T03:09:30.737 INFO:teuthology.orchestra.run.smithi050.stdout:(26/33): liboath-2.6.7-2.el9.x86_64.rpm 967 kB/s | 49 kB 00:00 2024-09-11T03:09:30.744 INFO:teuthology.orchestra.run.smithi120.stdout:(10/33): python3-rados-19.3.0-4854.g8f219c47.el 6.3 MB/s | 321 kB 00:00 2024-09-11T03:09:30.763 INFO:teuthology.orchestra.run.smithi050.stdout:(27/33): libunwind-1.6.2-1.el9.x86_64.rpm 1.3 MB/s | 67 kB 00:00 2024-09-11T03:09:30.770 INFO:teuthology.orchestra.run.smithi120.stdout:(11/33): python3-rbd-19.3.0-4854.g8f219c47.el9. 6.0 MB/s | 306 kB 00:00 2024-09-11T03:09:30.795 INFO:teuthology.orchestra.run.smithi120.stdout:(12/33): python3-rgw-19.3.0-4854.g8f219c47.el9. 1.9 MB/s | 99 kB 00:00 2024-09-11T03:09:30.796 INFO:teuthology.orchestra.run.smithi050.stdout:(28/33): re2-20211101-20.el9.x86_64.rpm 5.7 MB/s | 191 kB 00:00 2024-09-11T03:09:30.838 INFO:teuthology.orchestra.run.smithi050.stdout:(29/33): parquet-libs-9.0.0-11.el9.x86_64.rpm 8.1 MB/s | 839 kB 00:00 2024-09-11T03:09:30.870 INFO:teuthology.orchestra.run.smithi120.stdout:(13/33): librgw2-19.3.0-4854.g8f219c47.el9.x86_ 10 MB/s | 5.5 MB 00:00 2024-09-11T03:09:30.905 INFO:teuthology.orchestra.run.smithi050.stdout:(30/33): thrift-0.15.0-2.el9.x86_64.rpm 15 MB/s | 1.6 MB 00:00 2024-09-11T03:09:30.912 INFO:teuthology.orchestra.run.smithi120.stdout:(14/33): boost-program-options-1.75.0-8.el9.x86 753 kB/s | 107 kB 00:00 2024-09-11T03:09:30.963 INFO:teuthology.orchestra.run.smithi120.stdout:(15/33): librabbitmq-0.11.0-7.el9.x86_64.rpm 904 kB/s | 45 kB 00:00 2024-09-11T03:09:30.988 INFO:teuthology.orchestra.run.smithi120.stdout:(16/33): libnbd-1.20.2-2.el9.x86_64.rpm 886 kB/s | 171 kB 00:00 2024-09-11T03:09:31.031 INFO:teuthology.orchestra.run.smithi050.stdout:(31/33): libarrow-9.0.0-11.el9.x86_64.rpm 10 MB/s | 4.4 MB 00:00 2024-09-11T03:09:31.031 INFO:teuthology.orchestra.run.smithi120.stdout:(17/33): libpmemobj-1.12.1-1.el9.x86_64.rpm 1.0 MB/s | 160 kB 00:00 2024-09-11T03:09:31.055 INFO:teuthology.orchestra.run.smithi120.stdout:(18/33): lttng-ust-2.12.0-6.el9.x86_64.rpm 4.3 MB/s | 292 kB 00:00 2024-09-11T03:09:31.081 INFO:teuthology.orchestra.run.smithi120.stdout:(19/33): python3-prettytable-0.7.2-27.el9.noarc 844 kB/s | 42 kB 00:00 2024-09-11T03:09:31.114 INFO:teuthology.orchestra.run.smithi050.stdout:(32/33): librados2-19.3.0-4854.g8f219c47.el9.x8 13 MB/s | 3.5 MB 00:00 2024-09-11T03:09:31.115 INFO:teuthology.orchestra.run.smithi120.stdout:(20/33): librdkafka-1.6.1-102.el9.x86_64.rpm 4.3 MB/s | 662 kB 00:00 2024-09-11T03:09:31.140 INFO:teuthology.orchestra.run.smithi120.stdout:(21/33): qatlib-24.02.0-1.el9.x86_64.rpm 2.6 MB/s | 221 kB 00:00 2024-09-11T03:09:31.165 INFO:teuthology.orchestra.run.smithi120.stdout:(22/33): qatlib-service-24.02.0-1.el9.x86_64.rp 428 kB/s | 36 kB 00:00 2024-09-11T03:09:31.190 INFO:teuthology.orchestra.run.smithi120.stdout:(23/33): qatzip-libs-1.2.0-1.el9.x86_64.rpm 944 kB/s | 47 kB 00:00 2024-09-11T03:09:31.214 INFO:teuthology.orchestra.run.smithi050.stdout:(33/33): librbd1-19.3.0-4854.g8f219c47.el9.x86_ 11 MB/s | 3.2 MB 00:00 2024-09-11T03:09:31.219 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:09:31.219 INFO:teuthology.orchestra.run.smithi050.stdout:Total 20 MB/s | 62 MB 00:03 2024-09-11T03:09:31.249 INFO:teuthology.orchestra.run.smithi120.stdout:(24/33): gperftools-libs-2.9.1-2.el9.x86_64.rpm 2.8 MB/s | 309 kB 00:00 2024-09-11T03:09:31.274 INFO:teuthology.orchestra.run.smithi120.stdout:(25/33): libarrow-doc-9.0.0-11.el9.noarch.rpm 378 kB/s | 26 kB 00:00 2024-09-11T03:09:31.300 INFO:teuthology.orchestra.run.smithi120.stdout:(26/33): liboath-2.6.7-2.el9.x86_64.rpm 967 kB/s | 49 kB 00:00 2024-09-11T03:09:31.325 INFO:teuthology.orchestra.run.smithi120.stdout:(27/33): libunwind-1.6.2-1.el9.x86_64.rpm 1.3 MB/s | 67 kB 00:00 2024-09-11T03:09:31.335 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:09:31.358 INFO:teuthology.orchestra.run.smithi120.stdout:(28/33): re2-20211101-20.el9.x86_64.rpm 5.6 MB/s | 191 kB 00:00 2024-09-11T03:09:31.376 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:09:31.377 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:09:31.400 INFO:teuthology.orchestra.run.smithi120.stdout:(29/33): parquet-libs-9.0.0-11.el9.x86_64.rpm 8.2 MB/s | 839 kB 00:00 2024-09-11T03:09:31.493 INFO:teuthology.orchestra.run.smithi120.stdout:(30/33): thrift-0.15.0-2.el9.x86_64.rpm 12 MB/s | 1.6 MB 00:00 2024-09-11T03:09:31.585 INFO:teuthology.orchestra.run.smithi120.stdout:(31/33): libarrow-9.0.0-11.el9.x86_64.rpm 11 MB/s | 4.4 MB 00:00 2024-09-11T03:09:31.727 INFO:teuthology.orchestra.run.smithi120.stdout:(32/33): librbd1-19.3.0-4854.g8f219c47.el9.x86_ 14 MB/s | 3.2 MB 00:00 2024-09-11T03:09:31.826 INFO:teuthology.orchestra.run.smithi120.stdout:(33/33): librados2-19.3.0-4854.g8f219c47.el9.x8 8.1 MB/s | 3.5 MB 00:00 2024-09-11T03:09:31.832 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:09:31.832 INFO:teuthology.orchestra.run.smithi120.stdout:Total 11 MB/s | 62 MB 00:05 2024-09-11T03:09:31.897 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:09:31.898 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:09:31.949 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:09:31.985 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:09:31.985 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:09:32.493 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:09:32.493 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:09:33.023 INFO:teuthology.orchestra.run.smithi165.stdout:CentOS Stream 9 - CRB 5.4 MB/s | 6.5 MB 00:01 2024-09-11T03:09:33.422 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:09:33.507 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/35 2024-09-11T03:09:33.544 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/35 2024-09-11T03:09:33.586 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/35 2024-09-11T03:09:33.608 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/35 2024-09-11T03:09:33.631 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/35 2024-09-11T03:09:33.829 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/35 2024-09-11T03:09:33.881 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/35 2024-09-11T03:09:33.962 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:09:34.050 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/35 2024-09-11T03:09:34.098 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/35 2024-09-11T03:09:34.132 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/35 2024-09-11T03:09:34.163 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/35 2024-09-11T03:09:34.190 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/35 2024-09-11T03:09:34.233 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/35 2024-09-11T03:09:34.346 INFO:teuthology.orchestra.run.smithi050.stdout: Upgrading : librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 7/35 2024-09-11T03:09:34.382 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/35 2024-09-11T03:09:34.441 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 7/35 2024-09-11T03:09:34.441 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/35 2024-09-11T03:09:34.530 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-rados-2:19.3.0-4854.g8f219c47.el9.x86_64 8/35 2024-09-11T03:09:34.556 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 9/35 2024-09-11T03:09:34.620 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 9/35 2024-09-11T03:09:34.657 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/35 2024-09-11T03:09:34.701 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-ceph-argparse-2:19.3.0-4854.g8f219c47.el9. 11/35 2024-09-11T03:09:34.777 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/35 2024-09-11T03:09:34.781 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-cephfs-2:19.3.0-4854.g8f219c47.el9.x86_64 12/35 2024-09-11T03:09:34.810 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libradosstriper1-2:19.3.0-4854.g8f219c47.el9.x86_6 13/35 2024-09-11T03:09:34.874 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: libradosstriper1-2:19.3.0-4854.g8f219c47.el9.x86_6 13/35 2024-09-11T03:09:34.907 INFO:teuthology.orchestra.run.smithi120.stdout: Upgrading : librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 7/35 2024-09-11T03:09:34.909 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/35 2024-09-11T03:09:35.002 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 7/35 2024-09-11T03:09:35.028 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/35 2024-09-11T03:09:35.068 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 16/35 2024-09-11T03:09:35.089 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-rados-2:19.3.0-4854.g8f219c47.el9.x86_64 8/35 2024-09-11T03:09:35.109 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/35 2024-09-11T03:09:35.117 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 9/35 2024-09-11T03:09:35.142 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/35 2024-09-11T03:09:35.171 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 19/35 2024-09-11T03:09:35.172 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 9/35 2024-09-11T03:09:35.203 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/35 2024-09-11T03:09:35.209 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/35 2024-09-11T03:09:35.241 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/35 2024-09-11T03:09:35.252 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-ceph-argparse-2:19.3.0-4854.g8f219c47.el9. 11/35 2024-09-11T03:09:35.323 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-cephfs-2:19.3.0-4854.g8f219c47.el9.x86_64 12/35 2024-09-11T03:09:35.376 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : libradosstriper1-2:19.3.0-4854.g8f219c47.el9.x86_6 13/35 2024-09-11T03:09:35.441 INFO:teuthology.orchestra.run.smithi165.stdout:CentOS Stream 9 - Extras packages 17 kB/s | 19 kB 00:01 2024-09-11T03:09:35.450 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: libradosstriper1-2:19.3.0-4854.g8f219c47.el9.x86_6 13/35 2024-09-11T03:09:35.493 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/35 2024-09-11T03:09:35.584 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libnbd-1.20.2-2.el9.x86_64 22/35 2024-09-11T03:09:35.612 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/35 2024-09-11T03:09:35.653 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 16/35 2024-09-11T03:09:35.658 INFO:teuthology.orchestra.run.smithi050.stdout: Upgrading : librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 23/35 2024-09-11T03:09:35.695 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/35 2024-09-11T03:09:35.727 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/35 2024-09-11T03:09:35.756 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 19/35 2024-09-11T03:09:35.788 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/35 2024-09-11T03:09:35.832 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/35 2024-09-11T03:09:35.918 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 23/35 2024-09-11T03:09:35.947 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-rbd-2:19.3.0-4854.g8f219c47.el9.x86_64 24/35 2024-09-11T03:09:35.984 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 25/35 2024-09-11T03:09:36.154 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : libnbd-1.20.2-2.el9.x86_64 22/35 2024-09-11T03:09:36.203 INFO:teuthology.orchestra.run.smithi120.stdout: Upgrading : librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 23/35 2024-09-11T03:09:36.293 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 23/35 2024-09-11T03:09:36.325 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-rbd-2:19.3.0-4854.g8f219c47.el9.x86_64 24/35 2024-09-11T03:09:36.369 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 25/35 2024-09-11T03:09:36.513 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 26/35 2024-09-11T03:09:36.536 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : librgw2-2:19.3.0-4854.g8f219c47.el9.x86_64 27/35 2024-09-11T03:09:36.608 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: librgw2-2:19.3.0-4854.g8f219c47.el9.x86_64 27/35 2024-09-11T03:09:36.689 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-rgw-2:19.3.0-4854.g8f219c47.el9.x86_64 28/35 2024-09-11T03:09:36.714 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-ceph-common-2:19.3.0-4854.g8f219c47.el9.x8 29/35 2024-09-11T03:09:36.871 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 26/35 2024-09-11T03:09:36.898 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : librgw2-2:19.3.0-4854.g8f219c47.el9.x86_64 27/35 2024-09-11T03:09:36.969 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: librgw2-2:19.3.0-4854.g8f219c47.el9.x86_64 27/35 2024-09-11T03:09:37.047 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-rgw-2:19.3.0-4854.g8f219c47.el9.x86_64 28/35 2024-09-11T03:09:37.075 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-ceph-common-2:19.3.0-4854.g8f219c47.el9.x8 29/35 2024-09-11T03:09:39.133 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 30/35 2024-09-11T03:09:39.168 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 30/35 2024-09-11T03:09:39.366 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 30/35 2024-09-11T03:09:39.397 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 30/35 2024-09-11T03:09:39.794 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 30/35 2024-09-11T03:09:39.839 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 31/35 2024-09-11T03:09:39.929 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 31/35 2024-09-11T03:09:39.929 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-11T03:09:39.929 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-09-11T03:09:39.929 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:09:39.973 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-selinux-2:19.3.0-4854.g8f219c47.el9.x86_64 32/35 2024-09-11T03:09:39.975 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 30/35 2024-09-11T03:09:40.018 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 31/35 2024-09-11T03:09:40.110 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 31/35 2024-09-11T03:09:40.110 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-11T03:09:40.111 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-11T03:09:40.111 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:09:40.161 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-selinux-2:19.3.0-4854.g8f219c47.el9.x86_64 32/35 2024-09-11T03:09:50.255 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-selinux-2:19.3.0-4854.g8f219c47.el9.x86_64 32/35 2024-09-11T03:09:50.255 INFO:teuthology.orchestra.run.smithi120.stdout:skipping the directory /sys 2024-09-11T03:09:50.255 INFO:teuthology.orchestra.run.smithi120.stdout:skipping the directory /proc 2024-09-11T03:09:50.255 INFO:teuthology.orchestra.run.smithi120.stdout:skipping the directory /mnt 2024-09-11T03:09:50.255 INFO:teuthology.orchestra.run.smithi120.stdout:skipping the directory /var/tmp 2024-09-11T03:09:50.255 INFO:teuthology.orchestra.run.smithi120.stdout:skipping the directory /home 2024-09-11T03:09:50.255 INFO:teuthology.orchestra.run.smithi120.stdout:skipping the directory /root 2024-09-11T03:09:50.256 INFO:teuthology.orchestra.run.smithi120.stdout:skipping the directory /tmp 2024-09-11T03:09:50.256 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:09:50.289 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-selinux-2:19.3.0-4854.g8f219c47.el9.x86_64 32/35 2024-09-11T03:09:50.289 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /sys 2024-09-11T03:09:50.289 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /proc 2024-09-11T03:09:50.289 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /mnt 2024-09-11T03:09:50.289 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /var/tmp 2024-09-11T03:09:50.289 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /home 2024-09-11T03:09:50.289 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /root 2024-09-11T03:09:50.289 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /tmp 2024-09-11T03:09:50.290 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:09:51.281 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-radosgw-2:19.3.0-4854.g8f219c47.el9.x86_64 33/35 2024-09-11T03:09:51.313 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-radosgw-2:19.3.0-4854.g8f219c47.el9.x86_64 33/35 2024-09-11T03:09:51.313 INFO:teuthology.orchestra.run.smithi120.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:09:51.313 INFO:teuthology.orchestra.run.smithi120.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-11T03:09:51.313 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-11T03:09:51.313 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-11T03:09:51.313 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:09:51.315 INFO:teuthology.orchestra.run.smithi120.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 34/35 2024-09-11T03:09:51.357 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-radosgw-2:19.3.0-4854.g8f219c47.el9.x86_64 33/35 2024-09-11T03:09:51.384 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-radosgw-2:19.3.0-4854.g8f219c47.el9.x86_64 33/35 2024-09-11T03:09:51.384 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:09:51.384 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-11T03:09:51.384 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-09-11T03:09:51.384 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-09-11T03:09:51.384 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:09:51.386 INFO:teuthology.orchestra.run.smithi050.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 34/35 2024-09-11T03:09:51.409 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 34/35 2024-09-11T03:09:51.409 INFO:teuthology.orchestra.run.smithi120.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 35/35 2024-09-11T03:09:51.476 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 34/35 2024-09-11T03:09:51.476 INFO:teuthology.orchestra.run.smithi050.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 35/35 2024-09-11T03:09:52.617 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 35/35 2024-09-11T03:09:52.618 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 1/35 2024-09-11T03:09:52.618 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 2/35 2024-09-11T03:09:52.618 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-radosgw-2:19.3.0-4854.g8f219c47.el9.x86_64 3/35 2024-09-11T03:09:52.618 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-selinux-2:19.3.0-4854.g8f219c47.el9.x86_64 4/35 2024-09-11T03:09:52.618 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 5/35 2024-09-11T03:09:52.618 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : libradosstriper1-2:19.3.0-4854.g8f219c47.el9.x86_6 6/35 2024-09-11T03:09:52.618 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : librgw2-2:19.3.0-4854.g8f219c47.el9.x86_64 7/35 2024-09-11T03:09:52.618 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-ceph-argparse-2:19.3.0-4854.g8f219c47.el9. 8/35 2024-09-11T03:09:52.618 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-ceph-common-2:19.3.0-4854.g8f219c47.el9.x8 9/35 2024-09-11T03:09:52.618 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-cephfs-2:19.3.0-4854.g8f219c47.el9.x86_64 10/35 2024-09-11T03:09:52.618 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-rados-2:19.3.0-4854.g8f219c47.el9.x86_64 11/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-rbd-2:19.3.0-4854.g8f219c47.el9.x86_64 12/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-rgw-2:19.3.0-4854.g8f219c47.el9.x86_64 13/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : libnbd-1.20.2-2.el9.x86_64 15/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 16/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 17/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 18/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 19/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 20/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 21/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 22/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 23/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 24/35 2024-09-11T03:09:52.619 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 25/35 2024-09-11T03:09:52.620 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 26/35 2024-09-11T03:09:52.620 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 27/35 2024-09-11T03:09:52.620 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 28/35 2024-09-11T03:09:52.620 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 29/35 2024-09-11T03:09:52.620 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : re2-1:20211101-20.el9.x86_64 30/35 2024-09-11T03:09:52.621 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 31/35 2024-09-11T03:09:52.621 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 32/35 2024-09-11T03:09:52.621 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 33/35 2024-09-11T03:09:52.621 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 34/35 2024-09-11T03:09:52.787 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 35/35 2024-09-11T03:09:52.787 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 1/35 2024-09-11T03:09:52.787 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 2/35 2024-09-11T03:09:52.787 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-radosgw-2:19.3.0-4854.g8f219c47.el9.x86_64 3/35 2024-09-11T03:09:52.788 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-selinux-2:19.3.0-4854.g8f219c47.el9.x86_64 4/35 2024-09-11T03:09:52.788 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 5/35 2024-09-11T03:09:52.788 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libradosstriper1-2:19.3.0-4854.g8f219c47.el9.x86_6 6/35 2024-09-11T03:09:52.788 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librgw2-2:19.3.0-4854.g8f219c47.el9.x86_64 7/35 2024-09-11T03:09:52.788 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-ceph-argparse-2:19.3.0-4854.g8f219c47.el9. 8/35 2024-09-11T03:09:52.788 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-ceph-common-2:19.3.0-4854.g8f219c47.el9.x8 9/35 2024-09-11T03:09:52.788 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-cephfs-2:19.3.0-4854.g8f219c47.el9.x86_64 10/35 2024-09-11T03:09:52.788 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-rados-2:19.3.0-4854.g8f219c47.el9.x86_64 11/35 2024-09-11T03:09:52.788 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-rbd-2:19.3.0-4854.g8f219c47.el9.x86_64 12/35 2024-09-11T03:09:52.788 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-rgw-2:19.3.0-4854.g8f219c47.el9.x86_64 13/35 2024-09-11T03:09:52.788 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/35 2024-09-11T03:09:52.788 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libnbd-1.20.2-2.el9.x86_64 15/35 2024-09-11T03:09:52.789 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 16/35 2024-09-11T03:09:52.789 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 17/35 2024-09-11T03:09:52.789 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 18/35 2024-09-11T03:09:52.789 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 19/35 2024-09-11T03:09:52.789 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 20/35 2024-09-11T03:09:52.789 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 21/35 2024-09-11T03:09:52.789 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 22/35 2024-09-11T03:09:52.789 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 23/35 2024-09-11T03:09:52.789 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 24/35 2024-09-11T03:09:52.789 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 25/35 2024-09-11T03:09:52.790 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 26/35 2024-09-11T03:09:52.790 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 27/35 2024-09-11T03:09:52.790 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 28/35 2024-09-11T03:09:52.790 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 29/35 2024-09-11T03:09:52.790 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : re2-1:20211101-20.el9.x86_64 30/35 2024-09-11T03:09:52.790 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 31/35 2024-09-11T03:09:52.790 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 32/35 2024-09-11T03:09:52.790 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 33/35 2024-09-11T03:09:52.790 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 34/35 2024-09-11T03:09:53.476 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 35/35 2024-09-11T03:09:53.476 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:09:53.476 INFO:teuthology.orchestra.run.smithi120.stdout:Upgraded: 2024-09-11T03:09:53.476 INFO:teuthology.orchestra.run.smithi120.stdout: librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.476 INFO:teuthology.orchestra.run.smithi120.stdout: librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.476 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:09:53.476 INFO:teuthology.orchestra.run.smithi120.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-11T03:09:53.476 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.476 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.476 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-radosgw-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-selinux-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: libnbd-1.20.2-2.el9.x86_64 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: libradosstriper1-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: librgw2-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-11T03:09:53.477 INFO:teuthology.orchestra.run.smithi120.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: python3-ceph-argparse-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: python3-ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: python3-cephfs-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: python3-rados-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: python3-rbd-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: python3-rgw-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: qatlib-24.02.0-1.el9.x86_64 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: re2-1:20211101-20.el9.x86_64 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-11T03:09:53.478 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:09:53.479 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:09:53.836 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 35/35 2024-09-11T03:09:53.836 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:09:53.836 INFO:teuthology.orchestra.run.smithi050.stdout:Upgraded: 2024-09-11T03:09:53.836 INFO:teuthology.orchestra.run.smithi050.stdout: librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.836 INFO:teuthology.orchestra.run.smithi050.stdout: librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-radosgw-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-selinux-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout: libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout: libnbd-1.20.2-2.el9.x86_64 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-11T03:09:53.837 INFO:teuthology.orchestra.run.smithi050.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: libradosstriper1-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: librgw2-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ceph-argparse-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cephfs-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rados-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rbd-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rgw-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:09:53.838 INFO:teuthology.orchestra.run.smithi050.stdout: qatlib-24.02.0-1.el9.x86_64 2024-09-11T03:09:53.839 INFO:teuthology.orchestra.run.smithi050.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-09-11T03:09:53.839 INFO:teuthology.orchestra.run.smithi050.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-09-11T03:09:53.839 INFO:teuthology.orchestra.run.smithi050.stdout: re2-1:20211101-20.el9.x86_64 2024-09-11T03:09:53.839 INFO:teuthology.orchestra.run.smithi050.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-11T03:09:53.839 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:09:53.839 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:09:53.888 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install ceph-test 2024-09-11T03:09:54.223 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-test 2024-09-11T03:09:54.455 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:00:31 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:09:54.588 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:09:54.589 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:09:54.589 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repository Size 2024-09-11T03:09:54.589 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:09:54.589 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:09:54.589 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-test x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 50 M 2024-09-11T03:09:54.589 INFO:teuthology.orchestra.run.smithi120.stdout:Installing dependencies: 2024-09-11T03:09:54.589 INFO:teuthology.orchestra.run.smithi120.stdout: libcephsqlite x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 162 k 2024-09-11T03:09:54.589 INFO:teuthology.orchestra.run.smithi120.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-11T03:09:54.590 INFO:teuthology.orchestra.run.smithi120.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-11T03:09:54.590 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:09:54.590 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:09:54.590 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:09:54.590 INFO:teuthology.orchestra.run.smithi120.stdout:Install 4 Packages 2024-09-11T03:09:54.590 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:09:54.590 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 51 M 2024-09-11T03:09:54.591 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 217 M 2024-09-11T03:09:54.591 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:09:54.813 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:00:29 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:09:54.902 INFO:teuthology.orchestra.run.smithi120.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.6 MB/s | 304 kB 00:00 2024-09-11T03:09:54.927 INFO:teuthology.orchestra.run.smithi120.stdout:(2/4): libcephsqlite-19.3.0-4854.g8f219c47.el9. 762 kB/s | 162 kB 00:00 2024-09-11T03:09:54.952 INFO:teuthology.orchestra.run.smithi120.stdout:(3/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.2 MB/s | 64 kB 00:00 2024-09-11T03:09:54.956 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:09:54.957 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:09:54.957 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-09-11T03:09:54.957 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:09:54.957 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:09:54.957 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-test x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 50 M 2024-09-11T03:09:54.957 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-09-11T03:09:54.957 INFO:teuthology.orchestra.run.smithi050.stdout: libcephsqlite x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 162 k 2024-09-11T03:09:54.957 INFO:teuthology.orchestra.run.smithi050.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-11T03:09:54.957 INFO:teuthology.orchestra.run.smithi050.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-11T03:09:54.957 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:09:54.957 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:09:54.957 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:09:54.958 INFO:teuthology.orchestra.run.smithi050.stdout:Install 4 Packages 2024-09-11T03:09:54.958 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:09:54.958 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 51 M 2024-09-11T03:09:54.958 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 217 M 2024-09-11T03:09:54.958 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:09:55.183 INFO:teuthology.orchestra.run.smithi050.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.7 MB/s | 304 kB 00:00 2024-09-11T03:09:55.225 INFO:teuthology.orchestra.run.smithi050.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.5 MB/s | 64 kB 00:00 2024-09-11T03:09:55.250 INFO:teuthology.orchestra.run.smithi050.stdout:(3/4): libcephsqlite-19.3.0-4854.g8f219c47.el9. 666 kB/s | 162 kB 00:00 2024-09-11T03:09:56.394 INFO:teuthology.orchestra.run.smithi120.stdout:(4/4): ceph-test-19.3.0-4854.g8f219c47.el9.x86_ 30 MB/s | 50 MB 00:01 2024-09-11T03:09:56.396 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:09:56.397 INFO:teuthology.orchestra.run.smithi120.stdout:Total 28 MB/s | 51 MB 00:01 2024-09-11T03:09:56.424 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:09:56.443 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:09:56.444 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:09:56.839 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:09:56.840 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:09:57.405 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:09:57.492 INFO:teuthology.orchestra.run.smithi050.stdout:(4/4): ceph-test-19.3.0-4854.g8f219c47.el9.x86_ 20 MB/s | 50 MB 00:02 2024-09-11T03:09:57.495 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:09:57.495 INFO:teuthology.orchestra.run.smithi050.stdout:Total 20 MB/s | 51 MB 00:02 2024-09-11T03:09:57.523 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:09:57.545 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:09:57.545 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:09:57.564 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-11T03:09:57.610 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-11T03:09:57.638 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : libcephsqlite-2:19.3.0-4854.g8f219c47.el9.x86_64 3/4 2024-09-11T03:09:57.967 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:09:57.967 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:09:58.578 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:09:58.671 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-11T03:09:58.717 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-11T03:09:58.744 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libcephsqlite-2:19.3.0-4854.g8f219c47.el9.x86_64 3/4 2024-09-11T03:10:02.384 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: libcephsqlite-2:19.3.0-4854.g8f219c47.el9.x86_64 3/4 2024-09-11T03:10:02.470 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-test-2:19.3.0-4854.g8f219c47.el9.x86_64 4/4 2024-09-11T03:10:03.770 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: libcephsqlite-2:19.3.0-4854.g8f219c47.el9.x86_64 3/4 2024-09-11T03:10:03.855 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-test-2:19.3.0-4854.g8f219c47.el9.x86_64 4/4 2024-09-11T03:10:04.991 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-test-2:19.3.0-4854.g8f219c47.el9.x86_64 4/4 2024-09-11T03:10:04.992 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-test-2:19.3.0-4854.g8f219c47.el9.x86_64 1/4 2024-09-11T03:10:04.992 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : libcephsqlite-2:19.3.0-4854.g8f219c47.el9.x86_64 2/4 2024-09-11T03:10:04.992 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-11T03:10:05.300 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-11T03:10:05.300 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:05.300 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:10:05.300 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-test-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:05.301 INFO:teuthology.orchestra.run.smithi120.stdout: libcephsqlite-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:05.301 INFO:teuthology.orchestra.run.smithi120.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-11T03:10:05.301 INFO:teuthology.orchestra.run.smithi120.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-11T03:10:05.301 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:05.301 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:10:05.631 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install ceph 2024-09-11T03:10:06.196 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:00:43 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:10:06.336 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:10:06.339 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:06.339 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repository Size 2024-09-11T03:10:06.339 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:06.339 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:10:06.339 INFO:teuthology.orchestra.run.smithi120.stdout: ceph x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 6.6 k 2024-09-11T03:10:06.339 INFO:teuthology.orchestra.run.smithi120.stdout:Installing dependencies: 2024-09-11T03:10:06.339 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mds x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 2.4 M 2024-09-11T03:10:06.339 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mgr x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 1.5 M 2024-09-11T03:10:06.339 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mgr-modules-core noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 291 k 2024-09-11T03:10:06.340 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mon x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 4.8 M 2024-09-11T03:10:06.340 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-osd x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 17 M 2024-09-11T03:10:06.340 INFO:teuthology.orchestra.run.smithi120.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-09-11T03:10:06.340 INFO:teuthology.orchestra.run.smithi120.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-09-11T03:10:06.340 INFO:teuthology.orchestra.run.smithi120.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2024-09-11T03:10:06.340 INFO:teuthology.orchestra.run.smithi120.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-11T03:10:06.340 INFO:teuthology.orchestra.run.smithi120.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-11T03:10:06.340 INFO:teuthology.orchestra.run.smithi120.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-11T03:10:06.340 INFO:teuthology.orchestra.run.smithi120.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-11T03:10:06.340 INFO:teuthology.orchestra.run.smithi120.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-11T03:10:06.340 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-11T03:10:06.340 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-11T03:10:06.340 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jaraco-collections 2024-09-11T03:10:06.341 INFO:teuthology.orchestra.run.smithi120.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-11T03:10:06.341 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-11T03:10:06.341 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-11T03:10:06.341 INFO:teuthology.orchestra.run.smithi120.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-11T03:10:06.341 INFO:teuthology.orchestra.run.smithi120.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-11T03:10:06.341 INFO:teuthology.orchestra.run.smithi120.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-11T03:10:06.341 INFO:teuthology.orchestra.run.smithi120.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-11T03:10:06.341 INFO:teuthology.orchestra.run.smithi120.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-11T03:10:06.341 INFO:teuthology.orchestra.run.smithi120.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-11T03:10:06.341 INFO:teuthology.orchestra.run.smithi120.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-11T03:10:06.341 INFO:teuthology.orchestra.run.smithi120.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-11T03:10:06.341 INFO:teuthology.orchestra.run.smithi120.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout:Install 37 Packages 2024-09-11T03:10:06.342 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:06.343 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 31 M 2024-09-11T03:10:06.343 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 109 M 2024-09-11T03:10:06.343 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:10:06.436 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-test-2:19.3.0-4854.g8f219c47.el9.x86_64 4/4 2024-09-11T03:10:06.437 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-test-2:19.3.0-4854.g8f219c47.el9.x86_64 1/4 2024-09-11T03:10:06.437 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libcephsqlite-2:19.3.0-4854.g8f219c47.el9.x86_64 2/4 2024-09-11T03:10:06.437 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-11T03:10:06.739 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-11T03:10:06.739 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:06.739 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:10:06.739 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-test-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:06.739 INFO:teuthology.orchestra.run.smithi050.stdout: libcephsqlite-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:06.739 INFO:teuthology.orchestra.run.smithi050.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-11T03:10:06.739 INFO:teuthology.orchestra.run.smithi050.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-11T03:10:06.739 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:06.739 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:10:06.740 INFO:teuthology.orchestra.run.smithi120.stdout:(1/37): ceph-19.3.0-4854.g8f219c47.el9.x86_64.r 49 kB/s | 6.6 kB 00:00 2024-09-11T03:10:06.914 INFO:teuthology.orchestra.run.smithi120.stdout:(2/37): ceph-mds-19.3.0-4854.g8f219c47.el9.x86_ 7.7 MB/s | 2.4 MB 00:00 2024-09-11T03:10:06.973 INFO:teuthology.orchestra.run.smithi120.stdout:(3/37): ceph-mgr-19.3.0-4854.g8f219c47.el9.x86_ 4.1 MB/s | 1.5 MB 00:00 2024-09-11T03:10:07.056 INFO:teuthology.orchestra.run.smithi120.stdout:(4/37): ceph-mgr-modules-core-19.3.0-4854.g8f21 3.4 MB/s | 291 kB 00:00 2024-09-11T03:10:07.141 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph 2024-09-11T03:10:07.141 INFO:teuthology.orchestra.run.smithi120.stdout:(5/37): ceph-mon-19.3.0-4854.g8f219c47.el9.x86_ 12 MB/s | 4.8 MB 00:00 2024-09-11T03:10:07.316 INFO:teuthology.orchestra.run.smithi120.stdout:(6/37): python3-cffi-1.14.5-5.el9.x86_64.rpm 979 kB/s | 253 kB 00:00 2024-09-11T03:10:07.524 INFO:teuthology.orchestra.run.smithi120.stdout:(7/37): ceph-osd-19.3.0-4854.g8f219c47.el9.x86_ 28 MB/s | 17 MB 00:00 2024-09-11T03:10:07.550 INFO:teuthology.orchestra.run.smithi120.stdout:(8/37): python3-ply-3.11-14.el9.noarch.rpm 455 kB/s | 106 kB 00:00 2024-09-11T03:10:07.591 INFO:teuthology.orchestra.run.smithi120.stdout:(9/37): python3-cryptography-36.0.1-4.el9.x86_6 2.7 MB/s | 1.2 MB 00:00 2024-09-11T03:10:07.617 INFO:teuthology.orchestra.run.smithi120.stdout:(10/37): python3-requests-2.25.1-8.el9.noarch.r 1.8 MB/s | 125 kB 00:00 2024-09-11T03:10:07.642 INFO:teuthology.orchestra.run.smithi120.stdout:(11/37): python3-urllib3-1.26.5-6.el9.noarch.rp 4.2 MB/s | 215 kB 00:00 2024-09-11T03:10:07.676 INFO:teuthology.orchestra.run.smithi120.stdout:(12/37): python3-pycparser-2.20-6.el9.noarch.rp 894 kB/s | 135 kB 00:00 2024-09-11T03:10:07.724 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:00:42 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:10:07.863 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:10:07.866 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:07.866 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-09-11T03:10:07.866 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:07.866 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:10:07.866 INFO:teuthology.orchestra.run.smithi050.stdout: ceph x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 6.6 k 2024-09-11T03:10:07.866 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-09-11T03:10:07.866 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mds x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 2.4 M 2024-09-11T03:10:07.866 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 1.5 M 2024-09-11T03:10:07.867 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-modules-core noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 291 k 2024-09-11T03:10:07.867 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mon x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 4.8 M 2024-09-11T03:10:07.867 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-osd x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 17 M 2024-09-11T03:10:07.867 INFO:teuthology.orchestra.run.smithi050.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-09-11T03:10:07.867 INFO:teuthology.orchestra.run.smithi050.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-09-11T03:10:07.867 INFO:teuthology.orchestra.run.smithi050.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2024-09-11T03:10:07.867 INFO:teuthology.orchestra.run.smithi050.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-11T03:10:07.867 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-11T03:10:07.867 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-11T03:10:07.867 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-11T03:10:07.867 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-11T03:10:07.867 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-collections 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-11T03:10:07.868 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout:Install 37 Packages 2024-09-11T03:10:07.869 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:07.870 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 31 M 2024-09-11T03:10:07.870 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 109 M 2024-09-11T03:10:07.870 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:10:08.243 INFO:teuthology.orchestra.run.smithi120.stdout:(13/37): python3-markupsafe-1.1.1-12.el9.x86_64 61 kB/s | 35 kB 00:00 2024-09-11T03:10:08.360 INFO:teuthology.orchestra.run.smithi120.stdout:(14/37): python3-mako-1.1.4-6.el9.noarch.rpm 240 kB/s | 172 kB 00:00 2024-09-11T03:10:08.402 INFO:teuthology.orchestra.run.smithi120.stdout:(15/37): lua-5.4.4-4.el9.x86_64.rpm 240 kB/s | 188 kB 00:00 2024-09-11T03:10:08.885 INFO:teuthology.orchestra.run.smithi120.stdout:(16/37): python3-packaging-20.9-5.el9.noarch.rp 120 kB/s | 77 kB 00:00 2024-09-11T03:10:08.888 INFO:teuthology.orchestra.run.smithi050.stdout:(1/37): ceph-19.3.0-4854.g8f219c47.el9.x86_64.r 56 kB/s | 6.6 kB 00:00 2024-09-11T03:10:08.944 INFO:teuthology.orchestra.run.smithi120.stdout:(17/37): python3-pytz-2021.1-5.el9.noarch.rpm 87 kB/s | 51 kB 00:00 2024-09-11T03:10:08.969 INFO:teuthology.orchestra.run.smithi120.stdout:(18/37): lua-devel-5.4.4-4.el9.x86_64.rpm 268 kB/s | 22 kB 00:00 2024-09-11T03:10:08.986 INFO:teuthology.orchestra.run.smithi120.stdout:(19/37): python3-toml-0.10.2-6.el9.noarch.rpm 71 kB/s | 42 kB 00:00 2024-09-11T03:10:09.045 INFO:teuthology.orchestra.run.smithi120.stdout:(20/37): luarocks-3.9.2-5.el9.noarch.rpm 1.5 MB/s | 151 kB 00:00 2024-09-11T03:10:09.070 INFO:teuthology.orchestra.run.smithi120.stdout:(21/37): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 435 kB/s | 43 kB 00:00 2024-09-11T03:10:09.089 INFO:teuthology.orchestra.run.smithi050.stdout:(2/37): ceph-mds-19.3.0-4854.g8f219c47.el9.x86_ 7.5 MB/s | 2.4 MB 00:00 2024-09-11T03:10:09.095 INFO:teuthology.orchestra.run.smithi120.stdout:(22/37): python3-jaraco-8.2.1-3.el9.noarch.rpm 433 kB/s | 11 kB 00:00 2024-09-11T03:10:09.121 INFO:teuthology.orchestra.run.smithi120.stdout:(23/37): python3-jaraco-classes-3.2.1-5.el9.noa 710 kB/s | 18 kB 00:00 2024-09-11T03:10:09.130 INFO:teuthology.orchestra.run.smithi050.stdout:(3/37): ceph-mgr-19.3.0-4854.g8f219c47.el9.x86_ 4.3 MB/s | 1.5 MB 00:00 2024-09-11T03:10:09.146 INFO:teuthology.orchestra.run.smithi120.stdout:(24/37): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.2 MB/s | 172 kB 00:00 2024-09-11T03:10:09.171 INFO:teuthology.orchestra.run.smithi120.stdout:(25/37): python3-jaraco-collections-3.0.0-8.el9 458 kB/s | 23 kB 00:00 2024-09-11T03:10:09.197 INFO:teuthology.orchestra.run.smithi120.stdout:(26/37): python3-jaraco-functools-3.5.0-2.el9.n 387 kB/s | 19 kB 00:00 2024-09-11T03:10:09.206 INFO:teuthology.orchestra.run.smithi050.stdout:(4/37): ceph-mgr-modules-core-19.3.0-4854.g8f21 3.8 MB/s | 291 kB 00:00 2024-09-11T03:10:09.222 INFO:teuthology.orchestra.run.smithi120.stdout:(27/37): python3-jaraco-text-3.2.0-6.el9.noarch 392 kB/s | 20 kB 00:00 2024-09-11T03:10:09.247 INFO:teuthology.orchestra.run.smithi120.stdout:(28/37): python3-logutils-0.3.5-21.el9.noarch.r 924 kB/s | 46 kB 00:00 2024-09-11T03:10:09.273 INFO:teuthology.orchestra.run.smithi120.stdout:(29/37): python3-cherrypy-18.6.1-2.el9.noarch.r 1.6 MB/s | 358 kB 00:00 2024-09-11T03:10:09.298 INFO:teuthology.orchestra.run.smithi120.stdout:(30/37): python3-more-itertools-8.12.0-2.el9.no 1.0 MB/s | 79 kB 00:00 2024-09-11T03:10:09.323 INFO:teuthology.orchestra.run.smithi120.stdout:(31/37): python3-portend-3.1.0-2.el9.noarch.rpm 328 kB/s | 16 kB 00:00 2024-09-11T03:10:09.331 INFO:teuthology.orchestra.run.smithi050.stdout:(5/37): python3-cffi-1.14.5-5.el9.x86_64.rpm 2.0 MB/s | 253 kB 00:00 2024-09-11T03:10:09.348 INFO:teuthology.orchestra.run.smithi120.stdout:(32/37): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.7 MB/s | 90 kB 00:00 2024-09-11T03:10:09.374 INFO:teuthology.orchestra.run.smithi120.stdout:(33/37): python3-tempora-5.0.0-2.el9.noarch.rpm 710 kB/s | 36 kB 00:00 2024-09-11T03:10:09.408 INFO:teuthology.orchestra.run.smithi120.stdout:(34/37): python3-pecan-1.4.2-3.el9.noarch.rpm 1.7 MB/s | 272 kB 00:00 2024-09-11T03:10:09.433 INFO:teuthology.orchestra.run.smithi120.stdout:(35/37): python3-webob-1.8.8-2.el9.noarch.rpm 2.7 MB/s | 230 kB 00:00 2024-09-11T03:10:09.436 INFO:teuthology.orchestra.run.smithi050.stdout:(6/37): ceph-mon-19.3.0-4854.g8f219c47.el9.x86_ 8.7 MB/s | 4.8 MB 00:00 2024-09-11T03:10:09.458 INFO:teuthology.orchestra.run.smithi120.stdout:(36/37): python3-zc-lockfile-2.0-10.el9.noarch. 397 kB/s | 20 kB 00:00 2024-09-11T03:10:09.484 INFO:teuthology.orchestra.run.smithi120.stdout:(37/37): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.8 MB/s | 427 kB 00:00 2024-09-11T03:10:09.489 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:10:09.489 INFO:teuthology.orchestra.run.smithi120.stdout:Total 9.8 MB/s | 31 MB 00:03 2024-09-11T03:10:09.641 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:10:09.681 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:10:09.681 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:10:09.707 INFO:teuthology.orchestra.run.smithi050.stdout:(7/37): ceph-osd-19.3.0-4854.g8f219c47.el9.x86_ 28 MB/s | 17 MB 00:00 2024-09-11T03:10:09.732 INFO:teuthology.orchestra.run.smithi050.stdout:(8/37): python3-ply-3.11-14.el9.noarch.rpm 361 kB/s | 106 kB 00:00 2024-09-11T03:10:09.766 INFO:teuthology.orchestra.run.smithi050.stdout:(9/37): python3-cryptography-36.0.1-4.el9.x86_6 2.8 MB/s | 1.2 MB 00:00 2024-09-11T03:10:09.791 INFO:teuthology.orchestra.run.smithi050.stdout:(10/37): python3-requests-2.25.1-8.el9.noarch.r 2.1 MB/s | 125 kB 00:00 2024-09-11T03:10:09.816 INFO:teuthology.orchestra.run.smithi050.stdout:(11/37): python3-urllib3-1.26.5-6.el9.noarch.rp 4.2 MB/s | 215 kB 00:00 2024-09-11T03:10:09.842 INFO:teuthology.orchestra.run.smithi050.stdout:(12/37): python3-pycparser-2.20-6.el9.noarch.rp 1.0 MB/s | 135 kB 00:00 2024-09-11T03:10:09.925 INFO:teuthology.orchestra.run.smithi050.stdout:(13/37): python3-markupsafe-1.1.1-12.el9.x86_64 417 kB/s | 35 kB 00:00 2024-09-11T03:10:09.950 INFO:teuthology.orchestra.run.smithi050.stdout:(14/37): lua-5.4.4-4.el9.x86_64.rpm 1.2 MB/s | 188 kB 00:00 2024-09-11T03:10:09.976 INFO:teuthology.orchestra.run.smithi050.stdout:(15/37): python3-mako-1.1.4-6.el9.noarch.rpm 1.1 MB/s | 172 kB 00:00 2024-09-11T03:10:10.001 INFO:teuthology.orchestra.run.smithi050.stdout:(16/37): python3-pytz-2021.1-5.el9.noarch.rpm 1.0 MB/s | 51 kB 00:00 2024-09-11T03:10:10.026 INFO:teuthology.orchestra.run.smithi050.stdout:(17/37): python3-packaging-20.9-5.el9.noarch.rp 768 kB/s | 77 kB 00:00 2024-09-11T03:10:10.052 INFO:teuthology.orchestra.run.smithi050.stdout:(18/37): python3-toml-0.10.2-6.el9.noarch.rpm 551 kB/s | 42 kB 00:00 2024-09-11T03:10:10.102 INFO:teuthology.orchestra.run.smithi050.stdout:(19/37): luarocks-3.9.2-5.el9.noarch.rpm 2.0 MB/s | 151 kB 00:00 2024-09-11T03:10:10.136 INFO:teuthology.orchestra.run.smithi050.stdout:(20/37): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 519 kB/s | 43 kB 00:00 2024-09-11T03:10:10.142 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:10:10.142 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:10:10.161 INFO:teuthology.orchestra.run.smithi050.stdout:(21/37): lua-devel-5.4.4-4.el9.x86_64.rpm 140 kB/s | 22 kB 00:00 2024-09-11T03:10:10.186 INFO:teuthology.orchestra.run.smithi050.stdout:(22/37): python3-cheroot-8.6.0-4.el9.noarch.rpm 2.1 MB/s | 172 kB 00:00 2024-09-11T03:10:10.220 INFO:teuthology.orchestra.run.smithi050.stdout:(23/37): python3-jaraco-8.2.1-3.el9.noarch.rpm 323 kB/s | 11 kB 00:00 2024-09-11T03:10:10.245 INFO:teuthology.orchestra.run.smithi050.stdout:(24/37): python3-jaraco-classes-3.2.1-5.el9.noa 304 kB/s | 18 kB 00:00 2024-09-11T03:10:10.270 INFO:teuthology.orchestra.run.smithi050.stdout:(25/37): python3-jaraco-collections-3.0.0-8.el9 482 kB/s | 23 kB 00:00 2024-09-11T03:10:10.295 INFO:teuthology.orchestra.run.smithi050.stdout:(26/37): python3-jaraco-functools-3.5.0-2.el9.n 786 kB/s | 19 kB 00:00 2024-09-11T03:10:10.437 INFO:teuthology.orchestra.run.smithi050.stdout:(27/37): python3-jaraco-text-3.2.0-6.el9.noarch 118 kB/s | 20 kB 00:00 2024-09-11T03:10:10.462 INFO:teuthology.orchestra.run.smithi050.stdout:(28/37): python3-logutils-0.3.5-21.el9.noarch.r 278 kB/s | 46 kB 00:00 2024-09-11T03:10:10.488 INFO:teuthology.orchestra.run.smithi050.stdout:(29/37): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2024-09-11T03:10:10.513 INFO:teuthology.orchestra.run.smithi050.stdout:(30/37): python3-cherrypy-18.6.1-2.el9.noarch.r 951 kB/s | 358 kB 00:00 2024-09-11T03:10:10.538 INFO:teuthology.orchestra.run.smithi050.stdout:(31/37): python3-portend-3.1.0-2.el9.noarch.rpm 327 kB/s | 16 kB 00:00 2024-09-11T03:10:10.564 INFO:teuthology.orchestra.run.smithi050.stdout:(32/37): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.8 MB/s | 90 kB 00:00 2024-09-11T03:10:10.589 INFO:teuthology.orchestra.run.smithi050.stdout:(33/37): python3-tempora-5.0.0-2.el9.noarch.rpm 715 kB/s | 36 kB 00:00 2024-09-11T03:10:10.614 INFO:teuthology.orchestra.run.smithi050.stdout:(34/37): python3-pecan-1.4.2-3.el9.noarch.rpm 1.8 MB/s | 272 kB 00:00 2024-09-11T03:10:10.639 INFO:teuthology.orchestra.run.smithi050.stdout:(35/37): python3-zc-lockfile-2.0-10.el9.noarch. 802 kB/s | 20 kB 00:00 2024-09-11T03:10:10.665 INFO:teuthology.orchestra.run.smithi050.stdout:(36/37): python3-webob-1.8.8-2.el9.noarch.rpm 3.0 MB/s | 230 kB 00:00 2024-09-11T03:10:10.690 INFO:teuthology.orchestra.run.smithi050.stdout:(37/37): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.1 MB/s | 427 kB 00:00 2024-09-11T03:10:10.694 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:10:10.694 INFO:teuthology.orchestra.run.smithi050.stdout:Total 11 MB/s | 31 MB 00:02 2024-09-11T03:10:10.852 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:10:10.895 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:10:10.895 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:10:11.371 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:10:11.371 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:10:11.482 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:10:11.553 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/37 2024-09-11T03:10:11.585 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/37 2024-09-11T03:10:11.622 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/37 2024-09-11T03:10:11.693 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/37 2024-09-11T03:10:11.729 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : luarocks-3.9.2-5.el9.noarch 5/37 2024-09-11T03:10:11.762 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/37 2024-09-11T03:10:11.896 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/37 2024-09-11T03:10:11.974 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/37 2024-09-11T03:10:12.015 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 9/37 2024-09-11T03:10:12.050 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/37 2024-09-11T03:10:12.080 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/37 2024-09-11T03:10:12.115 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/37 2024-09-11T03:10:12.148 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/37 2024-09-11T03:10:12.189 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/37 2024-09-11T03:10:12.249 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/37 2024-09-11T03:10:12.292 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/37 2024-09-11T03:10:12.340 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/37 2024-09-11T03:10:12.373 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/37 2024-09-11T03:10:12.454 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/37 2024-09-11T03:10:12.593 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 20/37 2024-09-11T03:10:12.672 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 21/37 2024-09-11T03:10:12.734 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 22/37 2024-09-11T03:10:12.781 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 23/37 2024-09-11T03:10:12.803 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:10:12.829 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-ply-3.11-14.el9.noarch 24/37 2024-09-11T03:10:12.859 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/37 2024-09-11T03:10:12.885 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 25/37 2024-09-11T03:10:12.901 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/37 2024-09-11T03:10:12.928 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/37 2024-09-11T03:10:13.003 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/37 2024-09-11T03:10:13.053 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : luarocks-3.9.2-5.el9.noarch 5/37 2024-09-11T03:10:13.073 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 26/37 2024-09-11T03:10:13.085 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/37 2024-09-11T03:10:13.127 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 27/37 2024-09-11T03:10:13.189 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/37 2024-09-11T03:10:13.206 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 28/37 2024-09-11T03:10:13.266 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/37 2024-09-11T03:10:13.294 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 29/37 2024-09-11T03:10:13.322 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 9/37 2024-09-11T03:10:13.357 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/37 2024-09-11T03:10:13.358 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 30/37 2024-09-11T03:10:13.386 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/37 2024-09-11T03:10:13.421 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/37 2024-09-11T03:10:13.454 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/37 2024-09-11T03:10:13.489 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 31/37 2024-09-11T03:10:13.495 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/37 2024-09-11T03:10:13.538 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/37 2024-09-11T03:10:13.573 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/37 2024-09-11T03:10:13.622 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/37 2024-09-11T03:10:13.649 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-mgr-modules-core-2:19.3.0-4854.g8f219c47.el9. 32/37 2024-09-11T03:10:13.662 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/37 2024-09-11T03:10:13.680 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 33/37 2024-09-11T03:10:13.706 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 33/37 2024-09-11T03:10:13.706 INFO:teuthology.orchestra.run.smithi120.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:10:13.706 INFO:teuthology.orchestra.run.smithi120.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-11T03:10:13.706 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-11T03:10:13.706 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-11T03:10:13.706 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:13.746 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/37 2024-09-11T03:10:13.896 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 20/37 2024-09-11T03:10:13.980 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 21/37 2024-09-11T03:10:14.032 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 22/37 2024-09-11T03:10:14.079 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 23/37 2024-09-11T03:10:14.136 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-ply-3.11-14.el9.noarch 24/37 2024-09-11T03:10:14.200 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 25/37 2024-09-11T03:10:14.402 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 26/37 2024-09-11T03:10:14.449 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 27/37 2024-09-11T03:10:14.529 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 28/37 2024-09-11T03:10:14.618 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 29/37 2024-09-11T03:10:14.674 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 30/37 2024-09-11T03:10:14.815 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 31/37 2024-09-11T03:10:14.999 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mgr-modules-core-2:19.3.0-4854.g8f219c47.el9. 32/37 2024-09-11T03:10:15.025 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 33/37 2024-09-11T03:10:15.052 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 33/37 2024-09-11T03:10:15.052 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:10:15.052 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-11T03:10:15.052 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-09-11T03:10:15.052 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-09-11T03:10:15.052 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:15.164 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-osd-2:19.3.0-4854.g8f219c47.el9.x86_64 34/37 2024-09-11T03:10:15.191 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-osd-2:19.3.0-4854.g8f219c47.el9.x86_64 34/37 2024-09-11T03:10:15.192 INFO:teuthology.orchestra.run.smithi120.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:10:15.192 INFO:teuthology.orchestra.run.smithi120.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-11T03:10:15.192 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-11T03:10:15.192 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-11T03:10:15.192 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:15.640 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-mon-2:19.3.0-4854.g8f219c47.el9.x86_64 35/37 2024-09-11T03:10:15.663 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-mon-2:19.3.0-4854.g8f219c47.el9.x86_64 35/37 2024-09-11T03:10:15.664 INFO:teuthology.orchestra.run.smithi120.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:10:15.664 INFO:teuthology.orchestra.run.smithi120.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-11T03:10:15.664 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-11T03:10:15.664 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-11T03:10:15.664 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:15.899 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-mds-2:19.3.0-4854.g8f219c47.el9.x86_64 36/37 2024-09-11T03:10:15.922 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-mds-2:19.3.0-4854.g8f219c47.el9.x86_64 36/37 2024-09-11T03:10:15.922 INFO:teuthology.orchestra.run.smithi120.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:10:15.922 INFO:teuthology.orchestra.run.smithi120.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-11T03:10:15.923 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-11T03:10:15.923 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-11T03:10:15.923 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:15.988 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-2:19.3.0-4854.g8f219c47.el9.x86_64 37/37 2024-09-11T03:10:16.626 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-osd-2:19.3.0-4854.g8f219c47.el9.x86_64 34/37 2024-09-11T03:10:16.655 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-osd-2:19.3.0-4854.g8f219c47.el9.x86_64 34/37 2024-09-11T03:10:16.655 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:10:16.655 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-11T03:10:16.656 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-09-11T03:10:16.656 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-09-11T03:10:16.656 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:17.127 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mon-2:19.3.0-4854.g8f219c47.el9.x86_64 35/37 2024-09-11T03:10:17.152 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mon-2:19.3.0-4854.g8f219c47.el9.x86_64 35/37 2024-09-11T03:10:17.153 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:10:17.153 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-11T03:10:17.153 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-09-11T03:10:17.153 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-09-11T03:10:17.153 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:17.385 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mds-2:19.3.0-4854.g8f219c47.el9.x86_64 36/37 2024-09-11T03:10:17.411 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mds-2:19.3.0-4854.g8f219c47.el9.x86_64 36/37 2024-09-11T03:10:17.411 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:10:17.411 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-11T03:10:17.411 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-09-11T03:10:17.411 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-09-11T03:10:17.411 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:17.477 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-2:19.3.0-4854.g8f219c47.el9.x86_64 37/37 2024-09-11T03:10:18.021 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-2:19.3.0-4854.g8f219c47.el9.x86_64 37/37 2024-09-11T03:10:18.021 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-2:19.3.0-4854.g8f219c47.el9.x86_64 1/37 2024-09-11T03:10:18.021 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-mds-2:19.3.0-4854.g8f219c47.el9.x86_64 2/37 2024-09-11T03:10:18.021 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 3/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-mon-2:19.3.0-4854.g8f219c47.el9.x86_64 4/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-osd-2:19.3.0-4854.g8f219c47.el9.x86_64 5/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-mgr-modules-core-2:19.3.0-4854.g8f219c47.el9. 6/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 16/37 2024-09-11T03:10:18.022 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 17/37 2024-09-11T03:10:18.023 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 18/37 2024-09-11T03:10:18.023 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 19/37 2024-09-11T03:10:18.023 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 20/37 2024-09-11T03:10:18.023 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 21/37 2024-09-11T03:10:18.023 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 22/37 2024-09-11T03:10:18.023 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 23/37 2024-09-11T03:10:18.023 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 24/37 2024-09-11T03:10:18.023 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 25/37 2024-09-11T03:10:18.023 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 26/37 2024-09-11T03:10:18.023 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 27/37 2024-09-11T03:10:18.023 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 28/37 2024-09-11T03:10:18.023 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 29/37 2024-09-11T03:10:18.024 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 30/37 2024-09-11T03:10:18.024 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 31/37 2024-09-11T03:10:18.024 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 32/37 2024-09-11T03:10:18.024 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 33/37 2024-09-11T03:10:18.024 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 34/37 2024-09-11T03:10:18.024 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 35/37 2024-09-11T03:10:18.024 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 36/37 2024-09-11T03:10:18.994 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 37/37 2024-09-11T03:10:18.995 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:18.995 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:10:18.995 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:18.995 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mds-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:18.995 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:18.995 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mgr-modules-core-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:18.995 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mon-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:18.995 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-osd-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:18.995 INFO:teuthology.orchestra.run.smithi120.stdout: lua-5.4.4-4.el9.x86_64 2024-09-11T03:10:18.995 INFO:teuthology.orchestra.run.smithi120.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-09-11T03:10:18.995 INFO:teuthology.orchestra.run.smithi120.stdout: luarocks-3.9.2-5.el9.noarch 2024-09-11T03:10:18.996 INFO:teuthology.orchestra.run.smithi120.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-11T03:10:18.996 INFO:teuthology.orchestra.run.smithi120.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-11T03:10:18.996 INFO:teuthology.orchestra.run.smithi120.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-11T03:10:18.996 INFO:teuthology.orchestra.run.smithi120.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-11T03:10:18.996 INFO:teuthology.orchestra.run.smithi120.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-11T03:10:18.996 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-11T03:10:18.996 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-11T03:10:18.996 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-11T03:10:18.996 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-11T03:10:18.996 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-11T03:10:18.996 INFO:teuthology.orchestra.run.smithi120.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-11T03:10:18.996 INFO:teuthology.orchestra.run.smithi120.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-11T03:10:18.997 INFO:teuthology.orchestra.run.smithi120.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-11T03:10:18.997 INFO:teuthology.orchestra.run.smithi120.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-11T03:10:18.997 INFO:teuthology.orchestra.run.smithi120.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-11T03:10:18.997 INFO:teuthology.orchestra.run.smithi120.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-11T03:10:18.997 INFO:teuthology.orchestra.run.smithi120.stdout: python3-ply-3.11-14.el9.noarch 2024-09-11T03:10:18.997 INFO:teuthology.orchestra.run.smithi120.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-11T03:10:18.997 INFO:teuthology.orchestra.run.smithi120.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-11T03:10:18.997 INFO:teuthology.orchestra.run.smithi120.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-11T03:10:18.997 INFO:teuthology.orchestra.run.smithi120.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-11T03:10:18.997 INFO:teuthology.orchestra.run.smithi120.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-11T03:10:18.997 INFO:teuthology.orchestra.run.smithi120.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-11T03:10:18.997 INFO:teuthology.orchestra.run.smithi120.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-11T03:10:18.997 INFO:teuthology.orchestra.run.smithi120.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-11T03:10:18.998 INFO:teuthology.orchestra.run.smithi120.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-11T03:10:18.998 INFO:teuthology.orchestra.run.smithi120.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-11T03:10:18.998 INFO:teuthology.orchestra.run.smithi120.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-11T03:10:18.998 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:18.998 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:10:19.322 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-2:19.3.0-4854.g8f219c47.el9.x86_64 37/37 2024-09-11T03:10:19.322 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-2:19.3.0-4854.g8f219c47.el9.x86_64 1/37 2024-09-11T03:10:19.322 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mds-2:19.3.0-4854.g8f219c47.el9.x86_64 2/37 2024-09-11T03:10:19.322 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 3/37 2024-09-11T03:10:19.322 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mon-2:19.3.0-4854.g8f219c47.el9.x86_64 4/37 2024-09-11T03:10:19.322 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-osd-2:19.3.0-4854.g8f219c47.el9.x86_64 5/37 2024-09-11T03:10:19.322 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mgr-modules-core-2:19.3.0-4854.g8f219c47.el9. 6/37 2024-09-11T03:10:19.323 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/37 2024-09-11T03:10:19.323 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/37 2024-09-11T03:10:19.323 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/37 2024-09-11T03:10:19.323 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/37 2024-09-11T03:10:19.323 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/37 2024-09-11T03:10:19.323 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/37 2024-09-11T03:10:19.323 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/37 2024-09-11T03:10:19.323 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/37 2024-09-11T03:10:19.323 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/37 2024-09-11T03:10:19.323 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 16/37 2024-09-11T03:10:19.323 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 17/37 2024-09-11T03:10:19.323 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 18/37 2024-09-11T03:10:19.323 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 19/37 2024-09-11T03:10:19.324 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 20/37 2024-09-11T03:10:19.324 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 21/37 2024-09-11T03:10:19.324 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 22/37 2024-09-11T03:10:19.324 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 23/37 2024-09-11T03:10:19.324 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 24/37 2024-09-11T03:10:19.324 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 25/37 2024-09-11T03:10:19.324 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 26/37 2024-09-11T03:10:19.324 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 27/37 2024-09-11T03:10:19.324 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 28/37 2024-09-11T03:10:19.325 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 29/37 2024-09-11T03:10:19.325 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 30/37 2024-09-11T03:10:19.326 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 31/37 2024-09-11T03:10:19.326 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 32/37 2024-09-11T03:10:19.326 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 33/37 2024-09-11T03:10:19.326 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 34/37 2024-09-11T03:10:19.326 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 35/37 2024-09-11T03:10:19.326 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 36/37 2024-09-11T03:10:19.374 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install ceph-base 2024-09-11T03:10:19.940 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:00:56 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:10:20.029 INFO:teuthology.orchestra.run.smithi120.stdout:Package ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:10:20.070 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:10:20.071 INFO:teuthology.orchestra.run.smithi120.stdout:Nothing to do. 2024-09-11T03:10:20.071 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:10:20.106 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 37/37 2024-09-11T03:10:20.106 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:20.106 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:10:20.106 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:20.106 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mds-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:20.106 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:20.106 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-modules-core-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:20.106 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mon-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:20.106 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-osd-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:20.106 INFO:teuthology.orchestra.run.smithi050.stdout: lua-5.4.4-4.el9.x86_64 2024-09-11T03:10:20.107 INFO:teuthology.orchestra.run.smithi050.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-09-11T03:10:20.107 INFO:teuthology.orchestra.run.smithi050.stdout: luarocks-3.9.2-5.el9.noarch 2024-09-11T03:10:20.107 INFO:teuthology.orchestra.run.smithi050.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-11T03:10:20.107 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-11T03:10:20.107 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-11T03:10:20.107 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-11T03:10:20.107 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-11T03:10:20.107 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-11T03:10:20.107 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-11T03:10:20.107 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-11T03:10:20.107 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-11T03:10:20.107 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-11T03:10:20.107 INFO:teuthology.orchestra.run.smithi050.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-11T03:10:20.108 INFO:teuthology.orchestra.run.smithi050.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-11T03:10:20.108 INFO:teuthology.orchestra.run.smithi050.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-11T03:10:20.108 INFO:teuthology.orchestra.run.smithi050.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-11T03:10:20.108 INFO:teuthology.orchestra.run.smithi050.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-11T03:10:20.108 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-11T03:10:20.108 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ply-3.11-14.el9.noarch 2024-09-11T03:10:20.108 INFO:teuthology.orchestra.run.smithi050.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-11T03:10:20.108 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-11T03:10:20.108 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-11T03:10:20.108 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-11T03:10:20.108 INFO:teuthology.orchestra.run.smithi050.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-11T03:10:20.108 INFO:teuthology.orchestra.run.smithi050.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-11T03:10:20.108 INFO:teuthology.orchestra.run.smithi050.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-11T03:10:20.109 INFO:teuthology.orchestra.run.smithi050.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-11T03:10:20.109 INFO:teuthology.orchestra.run.smithi050.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-11T03:10:20.109 INFO:teuthology.orchestra.run.smithi050.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-11T03:10:20.109 INFO:teuthology.orchestra.run.smithi050.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-11T03:10:20.109 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:20.109 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:10:20.146 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install cephadm 2024-09-11T03:10:20.457 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-base 2024-09-11T03:10:20.710 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:00:57 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:10:20.841 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:10:20.842 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:20.842 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repository Size 2024-09-11T03:10:20.842 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:20.842 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:10:20.842 INFO:teuthology.orchestra.run.smithi120.stdout: cephadm noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 783 k 2024-09-11T03:10:20.842 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:20.842 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:10:20.842 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:20.842 INFO:teuthology.orchestra.run.smithi120.stdout:Install 1 Package 2024-09-11T03:10:20.843 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:20.843 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 783 k 2024-09-11T03:10:20.843 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 790 k 2024-09-11T03:10:20.843 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:10:21.068 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:00:56 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:10:21.109 INFO:teuthology.orchestra.run.smithi120.stdout:cephadm-19.3.0-4854.g8f219c47.el9.noarch.rpm 2.9 MB/s | 783 kB 00:00 2024-09-11T03:10:21.110 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:10:21.110 INFO:teuthology.orchestra.run.smithi120.stdout:Total 2.9 MB/s | 783 kB 00:00 2024-09-11T03:10:21.110 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:10:21.115 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:10:21.115 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:10:21.121 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:10:21.121 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:10:21.162 INFO:teuthology.orchestra.run.smithi050.stdout:Package ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:10:21.193 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:10:21.209 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:10:21.210 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-09-11T03:10:21.210 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:10:21.273 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install cephadm 2024-09-11T03:10:21.647 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:10:21.756 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:10:21.864 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:00:56 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:10:22.003 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:10:22.004 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:22.004 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-09-11T03:10:22.004 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:22.004 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:10:22.004 INFO:teuthology.orchestra.run.smithi050.stdout: cephadm noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 783 k 2024-09-11T03:10:22.004 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:22.004 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:10:22.004 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:22.004 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-09-11T03:10:22.005 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:22.005 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 783 k 2024-09-11T03:10:22.005 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 790 k 2024-09-11T03:10:22.005 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:10:22.120 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:10:22.284 INFO:teuthology.orchestra.run.smithi050.stdout:cephadm-19.3.0-4854.g8f219c47.el9.noarch.rpm 2.7 MB/s | 783 kB 00:00 2024-09-11T03:10:22.284 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:10:22.285 INFO:teuthology.orchestra.run.smithi050.stdout:Total 2.7 MB/s | 783 kB 00:00 2024-09-11T03:10:22.285 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:10:22.290 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:10:22.291 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:10:22.297 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:10:22.297 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:10:22.370 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:10:22.370 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:22.370 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:10:22.370 INFO:teuthology.orchestra.run.smithi120.stdout: cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:22.370 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:22.370 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:10:22.372 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:10:22.572 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install ceph-immutable-object-cache 2024-09-11T03:10:22.839 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:10:22.941 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:10:23.151 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:00 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:10:23.288 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:10:23.288 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:23.288 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repo Size 2024-09-11T03:10:23.288 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:23.288 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:10:23.289 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-immutable-object-cache x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 145 k 2024-09-11T03:10:23.289 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:23.289 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:10:23.289 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:23.289 INFO:teuthology.orchestra.run.smithi120.stdout:Install 1 Package 2024-09-11T03:10:23.289 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:23.289 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 145 k 2024-09-11T03:10:23.289 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 432 k 2024-09-11T03:10:23.289 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:10:23.468 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:10:23.475 INFO:teuthology.orchestra.run.smithi120.stdout:ceph-immutable-object-cache-19.3.0-4854.g8f219c 780 kB/s | 145 kB 00:00 2024-09-11T03:10:23.475 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:10:23.476 INFO:teuthology.orchestra.run.smithi120.stdout:Total 774 kB/s | 145 kB 00:00 2024-09-11T03:10:23.476 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:10:23.483 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:10:23.483 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:10:23.541 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:10:23.541 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:10:23.687 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:10:23.725 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:10:23.725 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:23.725 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:10:23.726 INFO:teuthology.orchestra.run.smithi050.stdout: cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:23.726 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:23.726 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:10:23.759 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-immutable-object-cache-2:19.3.0-4854.g8f219c47. 1/1 2024-09-11T03:10:23.784 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.3.0-4854.g8f219c47. 1/1 2024-09-11T03:10:23.784 INFO:teuthology.orchestra.run.smithi120.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:10:23.785 INFO:teuthology.orchestra.run.smithi120.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-11T03:10:23.785 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:23.947 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-immutable-object-cache 2024-09-11T03:10:24.549 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:00:59 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:10:24.690 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:10:24.690 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:24.690 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repo Size 2024-09-11T03:10:24.690 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:24.691 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:10:24.691 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-immutable-object-cache x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 145 k 2024-09-11T03:10:24.691 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:24.691 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:10:24.691 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:24.691 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-09-11T03:10:24.691 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:24.692 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 145 k 2024-09-11T03:10:24.692 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 432 k 2024-09-11T03:10:24.692 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:10:24.718 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-immutable-object-cache-2:19.3.0-4854.g8f219c47. 1/1 2024-09-11T03:10:24.718 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:24.718 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:10:24.718 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-immutable-object-cache-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:24.718 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:24.718 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:10:24.898 INFO:teuthology.orchestra.run.smithi050.stdout:ceph-immutable-object-cache-19.3.0-4854.g8f219c 705 kB/s | 145 kB 00:00 2024-09-11T03:10:24.898 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:10:24.898 INFO:teuthology.orchestra.run.smithi050.stdout:Total 699 kB/s | 145 kB 00:00 2024-09-11T03:10:24.898 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:10:24.906 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:10:24.907 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:10:24.917 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install ceph-mgr 2024-09-11T03:10:24.967 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:10:24.968 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:10:25.247 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:10:25.307 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-immutable-object-cache-2:19.3.0-4854.g8f219c47. 1/1 2024-09-11T03:10:25.333 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.3.0-4854.g8f219c47. 1/1 2024-09-11T03:10:25.334 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:10:25.334 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-11T03:10:25.334 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:25.495 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:02 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:10:25.590 INFO:teuthology.orchestra.run.smithi120.stdout:Package ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:10:25.634 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:10:25.635 INFO:teuthology.orchestra.run.smithi120.stdout:Nothing to do. 2024-09-11T03:10:25.635 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:10:25.702 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install ceph-mgr-dashboard 2024-09-11T03:10:26.267 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:03 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:10:26.342 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-immutable-object-cache-2:19.3.0-4854.g8f219c47. 1/1 2024-09-11T03:10:26.342 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:26.342 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:10:26.342 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-immutable-object-cache-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:10:26.342 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:26.342 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:10:26.400 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:10:26.401 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:26.401 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repository Size 2024-09-11T03:10:26.402 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:26.402 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:10:26.402 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mgr-dashboard noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 14 M 2024-09-11T03:10:26.402 INFO:teuthology.orchestra.run.smithi120.stdout:Installing dependencies: 2024-09-11T03:10:26.402 INFO:teuthology.orchestra.run.smithi120.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-09-11T03:10:26.402 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-grafana-dashboards noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 34 k 2024-09-11T03:10:26.402 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-prometheus-alerts noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 16 k 2024-09-11T03:10:26.402 INFO:teuthology.orchestra.run.smithi120.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-09-11T03:10:26.402 INFO:teuthology.orchestra.run.smithi120.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-09-11T03:10:26.402 INFO:teuthology.orchestra.run.smithi120.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-09-11T03:10:26.402 INFO:teuthology.orchestra.run.smithi120.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-09-11T03:10:26.402 INFO:teuthology.orchestra.run.smithi120.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-09-11T03:10:26.403 INFO:teuthology.orchestra.run.smithi120.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-09-11T03:10:26.403 INFO:teuthology.orchestra.run.smithi120.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-11T03:10:26.403 INFO:teuthology.orchestra.run.smithi120.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-11T03:10:26.403 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:26.403 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:10:26.403 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:26.403 INFO:teuthology.orchestra.run.smithi120.stdout:Install 12 Packages 2024-09-11T03:10:26.403 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:26.404 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 19 M 2024-09-11T03:10:26.404 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 159 M 2024-09-11T03:10:26.404 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:10:26.551 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-mgr 2024-09-11T03:10:26.922 INFO:teuthology.orchestra.run.smithi120.stdout:(1/12): ceph-grafana-dashboards-19.3.0-4854.g8f 232 kB/s | 34 kB 00:00 2024-09-11T03:10:26.947 INFO:teuthology.orchestra.run.smithi120.stdout:(2/12): ceph-prometheus-alerts-19.3.0-4854.g8f2 95 kB/s | 16 kB 00:00 2024-09-11T03:10:27.142 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:02 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:10:27.236 INFO:teuthology.orchestra.run.smithi050.stdout:Package ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:10:27.281 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:10:27.282 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-09-11T03:10:27.282 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:10:27.351 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-mgr-dashboard 2024-09-11T03:10:27.456 INFO:teuthology.orchestra.run.smithi120.stdout:(3/12): ceph-mgr-dashboard-19.3.0-4854.g8f219c4 21 MB/s | 14 MB 00:00 2024-09-11T03:10:27.581 INFO:teuthology.orchestra.run.smithi120.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 425 kB/s | 269 kB 00:00 2024-09-11T03:10:27.639 INFO:teuthology.orchestra.run.smithi120.stdout:(5/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 9.2 MB/s | 548 kB 00:00 2024-09-11T03:10:27.665 INFO:teuthology.orchestra.run.smithi120.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 775 kB/s | 19 kB 00:00 2024-09-11T03:10:27.748 INFO:teuthology.orchestra.run.smithi120.stdout:(7/12): python3-grpcio-1.46.7-10.el9.x86_64.rpm 24 MB/s | 2.0 MB 00:00 2024-09-11T03:10:27.791 INFO:teuthology.orchestra.run.smithi120.stdout:(8/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 4.1 MB/s | 144 kB 00:00 2024-09-11T03:10:27.824 INFO:teuthology.orchestra.run.smithi120.stdout:(9/12): protobuf-3.14.0-13.el9.x86_64.rpm 1.1 MB/s | 1.0 MB 00:00 2024-09-11T03:10:27.850 INFO:teuthology.orchestra.run.smithi120.stdout:(10/12): python3-repoze-lru-0.7-16.el9.noarch.r 523 kB/s | 31 kB 00:00 2024-09-11T03:10:27.891 INFO:teuthology.orchestra.run.smithi120.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 2.8 MB/s | 188 kB 00:00 2024-09-11T03:10:27.941 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:02 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:10:28.083 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:10:28.084 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:28.084 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-09-11T03:10:28.084 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:28.084 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:10:28.084 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-dashboard noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 14 M 2024-09-11T03:10:28.084 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-09-11T03:10:28.084 INFO:teuthology.orchestra.run.smithi050.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-09-11T03:10:28.084 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-grafana-dashboards noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 34 k 2024-09-11T03:10:28.084 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-prometheus-alerts noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 16 k 2024-09-11T03:10:28.084 INFO:teuthology.orchestra.run.smithi050.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-09-11T03:10:28.084 INFO:teuthology.orchestra.run.smithi050.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-09-11T03:10:28.085 INFO:teuthology.orchestra.run.smithi050.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-09-11T03:10:28.085 INFO:teuthology.orchestra.run.smithi050.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-09-11T03:10:28.085 INFO:teuthology.orchestra.run.smithi050.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-09-11T03:10:28.085 INFO:teuthology.orchestra.run.smithi050.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-09-11T03:10:28.085 INFO:teuthology.orchestra.run.smithi050.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-11T03:10:28.085 INFO:teuthology.orchestra.run.smithi050.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-11T03:10:28.085 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:28.085 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:10:28.085 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:28.085 INFO:teuthology.orchestra.run.smithi050.stdout:Install 12 Packages 2024-09-11T03:10:28.085 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:28.086 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 19 M 2024-09-11T03:10:28.086 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 159 M 2024-09-11T03:10:28.086 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:10:28.475 INFO:teuthology.orchestra.run.smithi120.stdout:(12/12): protobuf-compiler-3.14.0-13.el9.x86_64 847 kB/s | 863 kB 00:01 2024-09-11T03:10:28.480 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:10:28.480 INFO:teuthology.orchestra.run.smithi120.stdout:Total 9.3 MB/s | 19 MB 00:02 2024-09-11T03:10:28.493 INFO:teuthology.orchestra.run.smithi050.stdout:(1/12): ceph-grafana-dashboards-19.3.0-4854.g8f 240 kB/s | 34 kB 00:00 2024-09-11T03:10:28.518 INFO:teuthology.orchestra.run.smithi050.stdout:(2/12): ceph-prometheus-alerts-19.3.0-4854.g8f2 98 kB/s | 16 kB 00:00 2024-09-11T03:10:28.529 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:10:28.548 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:10:28.549 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:10:28.660 INFO:teuthology.orchestra.run.smithi050.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.9 MB/s | 269 kB 00:00 2024-09-11T03:10:28.710 INFO:teuthology.orchestra.run.smithi050.stdout:(4/12): protobuf-3.14.0-13.el9.x86_64.rpm 4.7 MB/s | 1.0 MB 00:00 2024-09-11T03:10:28.760 INFO:teuthology.orchestra.run.smithi050.stdout:(5/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 11 MB/s | 548 kB 00:00 2024-09-11T03:10:28.786 INFO:teuthology.orchestra.run.smithi050.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 783 kB/s | 19 kB 00:00 2024-09-11T03:10:28.830 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:10:28.830 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:10:28.861 INFO:teuthology.orchestra.run.smithi050.stdout:(7/12): python3-grpcio-1.46.7-10.el9.x86_64.rpm 27 MB/s | 2.0 MB 00:00 2024-09-11T03:10:28.903 INFO:teuthology.orchestra.run.smithi050.stdout:(8/12): protobuf-compiler-3.14.0-13.el9.x86_64. 3.5 MB/s | 863 kB 00:00 2024-09-11T03:10:28.936 INFO:teuthology.orchestra.run.smithi050.stdout:(9/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 1.9 MB/s | 144 kB 00:00 2024-09-11T03:10:28.970 INFO:teuthology.orchestra.run.smithi050.stdout:(10/12): python3-routes-2.5.1-5.el9.noarch.rpm 7.3 MB/s | 188 kB 00:00 2024-09-11T03:10:28.995 INFO:teuthology.orchestra.run.smithi050.stdout:(11/12): python3-repoze-lru-0.7-16.el9.noarch.r 334 kB/s | 31 kB 00:00 2024-09-11T03:10:29.145 INFO:teuthology.orchestra.run.smithi050.stdout:(12/12): ceph-mgr-dashboard-19.3.0-4854.g8f219c 18 MB/s | 14 MB 00:00 2024-09-11T03:10:29.150 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:10:29.150 INFO:teuthology.orchestra.run.smithi050.stdout:Total 18 MB/s | 19 MB 00:01 2024-09-11T03:10:29.201 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:10:29.221 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:10:29.221 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:10:29.414 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:10:29.501 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-09-11T03:10:29.517 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:10:29.517 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:10:29.535 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-09-11T03:10:29.582 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-09-11T03:10:29.617 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-09-11T03:10:29.711 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-09-11T03:10:29.848 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-09-11T03:10:29.934 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-09-11T03:10:29.977 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-09-11T03:10:30.014 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-09-11T03:10:30.046 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-prometheus-alerts-2:19.3.0-4854.g8f219c47.el9 10/12 2024-09-11T03:10:30.126 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:10:30.214 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-09-11T03:10:30.257 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-09-11T03:10:30.313 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-09-11T03:10:30.350 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-09-11T03:10:30.449 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-09-11T03:10:30.593 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-09-11T03:10:30.694 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-09-11T03:10:30.748 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-09-11T03:10:30.775 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-09-11T03:10:30.808 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-prometheus-alerts-2:19.3.0-4854.g8f219c47.el9 10/12 2024-09-11T03:10:33.208 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-grafana-dashboards-2:19.3.0-4854.g8f219c47.el 11/12 2024-09-11T03:10:33.268 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-mgr-dashboard-2:19.3.0-4854.g8f219c47.el9.noa 12/12 2024-09-11T03:10:34.187 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-grafana-dashboards-2:19.3.0-4854.g8f219c47.el 11/12 2024-09-11T03:10:34.245 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mgr-dashboard-2:19.3.0-4854.g8f219c47.el9.noa 12/12 2024-09-11T03:10:35.267 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.3.0-4854.g8f219c47.el9.noa 12/12 2024-09-11T03:10:35.267 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-grafana-dashboards-2:19.3.0-4854.g8f219c47.el 1/12 2024-09-11T03:10:35.267 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-mgr-dashboard-2:19.3.0-4854.g8f219c47.el9.noa 2/12 2024-09-11T03:10:35.267 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-prometheus-alerts-2:19.3.0-4854.g8f219c47.el9 3/12 2024-09-11T03:10:35.267 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-09-11T03:10:35.267 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-09-11T03:10:35.267 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-09-11T03:10:35.267 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-09-11T03:10:35.267 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-09-11T03:10:35.267 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-09-11T03:10:35.267 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-09-11T03:10:35.268 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-09-11T03:10:35.600 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-09-11T03:10:35.600 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:35.600 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:10:35.601 INFO:teuthology.orchestra.run.smithi120.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-09-11T03:10:35.601 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-grafana-dashboards-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:35.601 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mgr-dashboard-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:35.601 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-prometheus-alerts-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:35.601 INFO:teuthology.orchestra.run.smithi120.stdout: grpc-data-1.46.7-10.el9.noarch 2024-09-11T03:10:35.601 INFO:teuthology.orchestra.run.smithi120.stdout: protobuf-3.14.0-13.el9.x86_64 2024-09-11T03:10:35.601 INFO:teuthology.orchestra.run.smithi120.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-09-11T03:10:35.601 INFO:teuthology.orchestra.run.smithi120.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-09-11T03:10:35.601 INFO:teuthology.orchestra.run.smithi120.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-09-11T03:10:35.601 INFO:teuthology.orchestra.run.smithi120.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-09-11T03:10:35.601 INFO:teuthology.orchestra.run.smithi120.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-11T03:10:35.601 INFO:teuthology.orchestra.run.smithi120.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-11T03:10:35.602 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:35.602 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:10:35.853 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-11T03:10:36.183 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.3.0-4854.g8f219c47.el9.noa 12/12 2024-09-11T03:10:36.183 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-grafana-dashboards-2:19.3.0-4854.g8f219c47.el 1/12 2024-09-11T03:10:36.183 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mgr-dashboard-2:19.3.0-4854.g8f219c47.el9.noa 2/12 2024-09-11T03:10:36.183 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-prometheus-alerts-2:19.3.0-4854.g8f219c47.el9 3/12 2024-09-11T03:10:36.183 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-09-11T03:10:36.183 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-09-11T03:10:36.183 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-09-11T03:10:36.183 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-09-11T03:10:36.183 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-09-11T03:10:36.183 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-09-11T03:10:36.184 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-09-11T03:10:36.184 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-09-11T03:10:36.429 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:13 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:10:36.518 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-09-11T03:10:36.518 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:36.518 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:10:36.518 INFO:teuthology.orchestra.run.smithi050.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-09-11T03:10:36.518 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-grafana-dashboards-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:36.518 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-dashboard-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:36.519 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-prometheus-alerts-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:36.519 INFO:teuthology.orchestra.run.smithi050.stdout: grpc-data-1.46.7-10.el9.noarch 2024-09-11T03:10:36.519 INFO:teuthology.orchestra.run.smithi050.stdout: protobuf-3.14.0-13.el9.x86_64 2024-09-11T03:10:36.519 INFO:teuthology.orchestra.run.smithi050.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-09-11T03:10:36.519 INFO:teuthology.orchestra.run.smithi050.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-09-11T03:10:36.519 INFO:teuthology.orchestra.run.smithi050.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-09-11T03:10:36.519 INFO:teuthology.orchestra.run.smithi050.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-09-11T03:10:36.519 INFO:teuthology.orchestra.run.smithi050.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-11T03:10:36.519 INFO:teuthology.orchestra.run.smithi050.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-11T03:10:36.519 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:36.519 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:10:36.572 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:10:36.573 INFO:teuthology.orchestra.run.smithi120.stdout:======================================================================================= 2024-09-11T03:10:36.573 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repository Size 2024-09-11T03:10:36.573 INFO:teuthology.orchestra.run.smithi120.stdout:======================================================================================= 2024-09-11T03:10:36.573 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:10:36.573 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mgr-diskprediction-local noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 7.4 M 2024-09-11T03:10:36.573 INFO:teuthology.orchestra.run.smithi120.stdout:Installing dependencies: 2024-09-11T03:10:36.574 INFO:teuthology.orchestra.run.smithi120.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-11T03:10:36.574 INFO:teuthology.orchestra.run.smithi120.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-11T03:10:36.574 INFO:teuthology.orchestra.run.smithi120.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-11T03:10:36.574 INFO:teuthology.orchestra.run.smithi120.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-11T03:10:36.574 INFO:teuthology.orchestra.run.smithi120.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-11T03:10:36.574 INFO:teuthology.orchestra.run.smithi120.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-11T03:10:36.574 INFO:teuthology.orchestra.run.smithi120.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-11T03:10:36.574 INFO:teuthology.orchestra.run.smithi120.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-11T03:10:36.574 INFO:teuthology.orchestra.run.smithi120.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-11T03:10:36.574 INFO:teuthology.orchestra.run.smithi120.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-11T03:10:36.574 INFO:teuthology.orchestra.run.smithi120.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-11T03:10:36.574 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:36.575 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:10:36.575 INFO:teuthology.orchestra.run.smithi120.stdout:======================================================================================= 2024-09-11T03:10:36.575 INFO:teuthology.orchestra.run.smithi120.stdout:Install 12 Packages 2024-09-11T03:10:36.575 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:36.575 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 38 M 2024-09-11T03:10:36.575 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 212 M 2024-09-11T03:10:36.575 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:10:36.809 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-11T03:10:37.018 INFO:teuthology.orchestra.run.smithi120.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.2 MB/s | 191 kB 00:00 2024-09-11T03:10:37.085 INFO:teuthology.orchestra.run.smithi120.stdout:(2/12): libgfortran-11.5.0-2.el9.x86_64.rpm 3.4 MB/s | 801 kB 00:00 2024-09-11T03:10:37.110 INFO:teuthology.orchestra.run.smithi120.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 356 kB/s | 33 kB 00:00 2024-09-11T03:10:37.144 INFO:teuthology.orchestra.run.smithi120.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 546 kB/s | 18 kB 00:00 2024-09-11T03:10:37.177 INFO:teuthology.orchestra.run.smithi120.stdout:(5/12): openblas-0.3.26-2.el9.x86_64.rpm 1.1 MB/s | 38 kB 00:00 2024-09-11T03:10:37.400 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:12 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:10:37.540 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:10:37.541 INFO:teuthology.orchestra.run.smithi050.stdout:======================================================================================= 2024-09-11T03:10:37.542 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-09-11T03:10:37.542 INFO:teuthology.orchestra.run.smithi050.stdout:======================================================================================= 2024-09-11T03:10:37.542 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:10:37.542 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-diskprediction-local noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 7.4 M 2024-09-11T03:10:37.542 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-09-11T03:10:37.542 INFO:teuthology.orchestra.run.smithi050.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-11T03:10:37.542 INFO:teuthology.orchestra.run.smithi050.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-11T03:10:37.542 INFO:teuthology.orchestra.run.smithi050.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-11T03:10:37.542 INFO:teuthology.orchestra.run.smithi050.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-11T03:10:37.542 INFO:teuthology.orchestra.run.smithi050.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-11T03:10:37.542 INFO:teuthology.orchestra.run.smithi050.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-11T03:10:37.543 INFO:teuthology.orchestra.run.smithi050.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-11T03:10:37.543 INFO:teuthology.orchestra.run.smithi050.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-11T03:10:37.543 INFO:teuthology.orchestra.run.smithi050.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-11T03:10:37.543 INFO:teuthology.orchestra.run.smithi050.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-11T03:10:37.543 INFO:teuthology.orchestra.run.smithi050.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-11T03:10:37.543 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:37.543 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:10:37.543 INFO:teuthology.orchestra.run.smithi050.stdout:======================================================================================= 2024-09-11T03:10:37.543 INFO:teuthology.orchestra.run.smithi050.stdout:Install 12 Packages 2024-09-11T03:10:37.543 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:37.544 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 38 M 2024-09-11T03:10:37.544 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 212 M 2024-09-11T03:10:37.544 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:10:37.586 INFO:teuthology.orchestra.run.smithi120.stdout:(6/12): ceph-mgr-diskprediction-local-19.3.0-48 10 MB/s | 7.4 MB 00:00 2024-09-11T03:10:37.720 INFO:teuthology.orchestra.run.smithi120.stdout:(7/12): python3-devel-3.9.19-8.el9.x86_64.rpm 1.8 MB/s | 245 kB 00:00 2024-09-11T03:10:37.854 INFO:teuthology.orchestra.run.smithi120.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 3.9 MB/s | 3.0 MB 00:00 2024-09-11T03:10:37.946 INFO:teuthology.orchestra.run.smithi120.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.7 MB/s | 250 kB 00:00 2024-09-11T03:10:37.987 INFO:teuthology.orchestra.run.smithi050.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 888 kB/s | 191 kB 00:00 2024-09-11T03:10:38.054 INFO:teuthology.orchestra.run.smithi050.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 492 kB/s | 33 kB 00:00 2024-09-11T03:10:38.079 INFO:teuthology.orchestra.run.smithi050.stdout:(3/12): libgfortran-11.5.0-2.el9.x86_64.rpm 2.5 MB/s | 801 kB 00:00 2024-09-11T03:10:38.146 INFO:teuthology.orchestra.run.smithi050.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 273 kB/s | 18 kB 00:00 2024-09-11T03:10:38.196 INFO:teuthology.orchestra.run.smithi050.stdout:(5/12): openblas-0.3.26-2.el9.x86_64.rpm 772 kB/s | 38 kB 00:00 2024-09-11T03:10:38.371 INFO:teuthology.orchestra.run.smithi120.stdout:(10/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 4.1 MB/s | 4.9 MB 00:01 2024-09-11T03:10:38.647 INFO:teuthology.orchestra.run.smithi050.stdout:(6/12): ceph-mgr-diskprediction-local-19.3.0-48 8.4 MB/s | 7.4 MB 00:00 2024-09-11T03:10:38.772 INFO:teuthology.orchestra.run.smithi050.stdout:(7/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 4.2 MB/s | 3.0 MB 00:00 2024-09-11T03:10:38.797 INFO:teuthology.orchestra.run.smithi050.stdout:(8/12): python3-devel-3.9.19-8.el9.x86_64.rpm 1.6 MB/s | 245 kB 00:00 2024-09-11T03:10:38.864 INFO:teuthology.orchestra.run.smithi050.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 3.6 MB/s | 250 kB 00:00 2024-09-11T03:10:39.004 INFO:teuthology.orchestra.run.smithi120.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 4.0 MB/s | 5.1 MB 00:01 2024-09-11T03:10:39.373 INFO:teuthology.orchestra.run.smithi050.stdout:(10/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 4.2 MB/s | 4.9 MB 00:01 2024-09-11T03:10:40.181 INFO:teuthology.orchestra.run.smithi050.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 3.6 MB/s | 5.1 MB 00:01 2024-09-11T03:10:41.038 INFO:teuthology.orchestra.run.smithi120.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 5.3 MB/s | 16 MB 00:03 2024-09-11T03:10:41.039 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:10:41.039 INFO:teuthology.orchestra.run.smithi120.stdout:Total 8.6 MB/s | 38 MB 00:04 2024-09-11T03:10:41.390 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:10:41.417 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:10:41.417 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:10:41.859 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:10:41.859 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:10:42.514 INFO:teuthology.orchestra.run.smithi050.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 4.5 MB/s | 16 MB 00:03 2024-09-11T03:10:42.516 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:10:42.516 INFO:teuthology.orchestra.run.smithi050.stdout:Total 7.7 MB/s | 38 MB 00:04 2024-09-11T03:10:42.632 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:10:42.699 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-11T03:10:42.753 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-11T03:10:42.851 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-11T03:10:42.888 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:10:42.896 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-11T03:10:42.916 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:10:42.916 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:10:43.080 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-11T03:10:43.120 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-11T03:10:43.196 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-11T03:10:43.390 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:10:43.390 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:10:43.873 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-11T03:10:44.000 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-11T03:10:44.303 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:10:44.384 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-11T03:10:44.430 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-11T03:10:44.533 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-11T03:10:44.673 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-11T03:10:44.865 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-11T03:10:44.896 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-11T03:10:44.975 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-11T03:10:45.248 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-11T03:10:45.674 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-11T03:10:45.797 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-11T03:10:46.281 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-11T03:10:46.313 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-mgr-diskprediction-local-2:19.3.0-4854.g8f219 12/12 2024-09-11T03:10:47.134 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-11T03:10:48.220 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-11T03:10:48.254 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mgr-diskprediction-local-2:19.3.0-4854.g8f219 12/12 2024-09-11T03:10:49.013 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.3.0-4854.g8f219 12/12 2024-09-11T03:10:49.013 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.3.0-4854.g8f219 1/12 2024-09-11T03:10:49.013 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-11T03:10:49.013 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-11T03:10:49.013 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-11T03:10:49.013 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-11T03:10:49.013 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-11T03:10:49.013 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-11T03:10:49.013 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-11T03:10:49.013 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-11T03:10:49.013 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-11T03:10:49.014 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-11T03:10:49.475 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-11T03:10:49.475 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:49.475 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:10:49.475 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mgr-diskprediction-local-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:49.475 INFO:teuthology.orchestra.run.smithi120.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-11T03:10:49.476 INFO:teuthology.orchestra.run.smithi120.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-11T03:10:49.476 INFO:teuthology.orchestra.run.smithi120.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-11T03:10:49.476 INFO:teuthology.orchestra.run.smithi120.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-11T03:10:49.476 INFO:teuthology.orchestra.run.smithi120.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-11T03:10:49.476 INFO:teuthology.orchestra.run.smithi120.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-11T03:10:49.476 INFO:teuthology.orchestra.run.smithi120.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-11T03:10:49.476 INFO:teuthology.orchestra.run.smithi120.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-11T03:10:49.476 INFO:teuthology.orchestra.run.smithi120.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-11T03:10:49.476 INFO:teuthology.orchestra.run.smithi120.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-11T03:10:49.476 INFO:teuthology.orchestra.run.smithi120.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-11T03:10:49.476 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:49.477 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:10:49.893 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install ceph-mgr-rook 2024-09-11T03:10:50.470 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:27 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:10:50.603 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:10:50.604 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:50.605 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repository Size 2024-09-11T03:10:50.605 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:50.605 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:10:50.605 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mgr-rook noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 49 k 2024-09-11T03:10:50.605 INFO:teuthology.orchestra.run.smithi120.stdout:Installing dependencies: 2024-09-11T03:10:50.605 INFO:teuthology.orchestra.run.smithi120.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-11T03:10:50.605 INFO:teuthology.orchestra.run.smithi120.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-11T03:10:50.605 INFO:teuthology.orchestra.run.smithi120.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-11T03:10:50.605 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-11T03:10:50.605 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-11T03:10:50.605 INFO:teuthology.orchestra.run.smithi120.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-11T03:10:50.605 INFO:teuthology.orchestra.run.smithi120.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-11T03:10:50.606 INFO:teuthology.orchestra.run.smithi120.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-11T03:10:50.606 INFO:teuthology.orchestra.run.smithi120.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-11T03:10:50.606 INFO:teuthology.orchestra.run.smithi120.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-11T03:10:50.606 INFO:teuthology.orchestra.run.smithi120.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-11T03:10:50.606 INFO:teuthology.orchestra.run.smithi120.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-11T03:10:50.606 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:50.606 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:10:50.606 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:50.606 INFO:teuthology.orchestra.run.smithi120.stdout:Install 13 Packages 2024-09-11T03:10:50.606 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:50.607 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 2.2 M 2024-09-11T03:10:50.607 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 26 M 2024-09-11T03:10:50.607 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:10:50.850 INFO:teuthology.orchestra.run.smithi120.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 214 kB/s | 19 kB 00:00 2024-09-11T03:10:50.875 INFO:teuthology.orchestra.run.smithi120.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 223 kB/s | 26 kB 00:00 2024-09-11T03:10:50.898 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.3.0-4854.g8f219 12/12 2024-09-11T03:10:50.899 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.3.0-4854.g8f219 1/12 2024-09-11T03:10:50.899 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-11T03:10:50.899 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-11T03:10:50.899 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-11T03:10:50.899 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-11T03:10:50.899 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-11T03:10:50.899 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-11T03:10:50.899 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-11T03:10:50.899 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-11T03:10:50.899 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-11T03:10:50.899 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-11T03:10:50.967 INFO:teuthology.orchestra.run.smithi120.stdout:(3/13): ceph-mgr-rook-19.3.0-4854.g8f219c47.el9 238 kB/s | 49 kB 00:00 2024-09-11T03:10:50.992 INFO:teuthology.orchestra.run.smithi120.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.5 MB/s | 222 kB 00:00 2024-09-11T03:10:51.017 INFO:teuthology.orchestra.run.smithi120.stdout:(5/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.1 MB/s | 159 kB 00:00 2024-09-11T03:10:51.051 INFO:teuthology.orchestra.run.smithi120.stdout:(6/13): python3-pyasn1-modules-0.4.8-6.el9.noar 3.2 MB/s | 279 kB 00:00 2024-09-11T03:10:51.076 INFO:teuthology.orchestra.run.smithi120.stdout:(7/13): python3-requests-oauthlib-1.3.0-12.el9. 912 kB/s | 54 kB 00:00 2024-09-11T03:10:51.101 INFO:teuthology.orchestra.run.smithi120.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 384 kB/s | 32 kB 00:00 2024-09-11T03:10:51.127 INFO:teuthology.orchestra.run.smithi120.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 204 kB/s | 14 kB 00:00 2024-09-11T03:10:51.152 INFO:teuthology.orchestra.run.smithi120.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 2.5 MB/s | 59 kB 00:00 2024-09-11T03:10:51.178 INFO:teuthology.orchestra.run.smithi120.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 3.5 MB/s | 90 kB 00:00 2024-09-11T03:10:51.211 INFO:teuthology.orchestra.run.smithi120.stdout:(12/13): python3-google-auth-2.34.0-1.el9.noarc 1.7 MB/s | 220 kB 00:00 2024-09-11T03:10:51.245 INFO:teuthology.orchestra.run.smithi120.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 7.6 MB/s | 1.0 MB 00:00 2024-09-11T03:10:51.247 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:10:51.247 INFO:teuthology.orchestra.run.smithi120.stdout:Total 3.5 MB/s | 2.2 MB 00:00 2024-09-11T03:10:51.299 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-11T03:10:51.299 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:51.299 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:10:51.300 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-diskprediction-local-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:51.300 INFO:teuthology.orchestra.run.smithi050.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-11T03:10:51.300 INFO:teuthology.orchestra.run.smithi050.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-11T03:10:51.300 INFO:teuthology.orchestra.run.smithi050.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-11T03:10:51.300 INFO:teuthology.orchestra.run.smithi050.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-11T03:10:51.301 INFO:teuthology.orchestra.run.smithi050.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-11T03:10:51.301 INFO:teuthology.orchestra.run.smithi050.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-11T03:10:51.301 INFO:teuthology.orchestra.run.smithi050.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-11T03:10:51.301 INFO:teuthology.orchestra.run.smithi050.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-11T03:10:51.301 INFO:teuthology.orchestra.run.smithi050.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-11T03:10:51.302 INFO:teuthology.orchestra.run.smithi050.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-11T03:10:51.302 INFO:teuthology.orchestra.run.smithi050.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-11T03:10:51.302 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:51.302 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:10:51.310 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:10:51.325 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:10:51.326 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:10:51.414 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:10:51.414 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:10:51.692 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-mgr-rook 2024-09-11T03:10:51.935 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:10:52.100 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-11T03:10:52.154 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-11T03:10:52.210 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-11T03:10:52.247 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-11T03:10:52.292 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:27 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:10:52.297 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-11T03:10:52.406 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-11T03:10:52.432 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:10:52.433 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:52.433 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-09-11T03:10:52.433 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:52.434 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:10:52.434 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-rook noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 49 k 2024-09-11T03:10:52.434 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-09-11T03:10:52.434 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-11T03:10:52.434 INFO:teuthology.orchestra.run.smithi050.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-11T03:10:52.434 INFO:teuthology.orchestra.run.smithi050.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-11T03:10:52.434 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-11T03:10:52.434 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-11T03:10:52.434 INFO:teuthology.orchestra.run.smithi050.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-11T03:10:52.434 INFO:teuthology.orchestra.run.smithi050.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-11T03:10:52.434 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-11T03:10:52.434 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-11T03:10:52.435 INFO:teuthology.orchestra.run.smithi050.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-11T03:10:52.435 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-11T03:10:52.435 INFO:teuthology.orchestra.run.smithi050.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-11T03:10:52.435 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:52.435 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:10:52.435 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:52.435 INFO:teuthology.orchestra.run.smithi050.stdout:Install 13 Packages 2024-09-11T03:10:52.435 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:52.436 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 2.2 M 2024-09-11T03:10:52.436 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 26 M 2024-09-11T03:10:52.436 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:10:52.517 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-11T03:10:52.574 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-11T03:10:52.728 INFO:teuthology.orchestra.run.smithi050.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 235 kB/s | 19 kB 00:00 2024-09-11T03:10:52.753 INFO:teuthology.orchestra.run.smithi050.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 240 kB/s | 26 kB 00:00 2024-09-11T03:10:52.812 INFO:teuthology.orchestra.run.smithi050.stdout:(3/13): ceph-mgr-rook-19.3.0-4854.g8f219c47.el9 298 kB/s | 49 kB 00:00 2024-09-11T03:10:52.837 INFO:teuthology.orchestra.run.smithi050.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.0 MB/s | 222 kB 00:00 2024-09-11T03:10:52.863 INFO:teuthology.orchestra.run.smithi050.stdout:(5/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.4 MB/s | 159 kB 00:00 2024-09-11T03:10:52.888 INFO:teuthology.orchestra.run.smithi050.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.0 MB/s | 54 kB 00:00 2024-09-11T03:10:52.930 INFO:teuthology.orchestra.run.smithi050.stdout:(7/13): python3-cachetools-4.2.4-1.el9.noarch.r 481 kB/s | 32 kB 00:00 2024-09-11T03:10:52.955 INFO:teuthology.orchestra.run.smithi050.stdout:(8/13): python3-certifi-2023.05.07-4.el9.noarch 210 kB/s | 14 kB 00:00 2024-09-11T03:10:52.981 INFO:teuthology.orchestra.run.smithi050.stdout:(9/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.6 MB/s | 279 kB 00:00 2024-09-11T03:10:53.014 INFO:teuthology.orchestra.run.smithi050.stdout:(10/13): python3-google-auth-2.34.0-1.el9.noarc 2.6 MB/s | 220 kB 00:00 2024-09-11T03:10:53.040 INFO:teuthology.orchestra.run.smithi050.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 3.8 MB/s | 90 kB 00:00 2024-09-11T03:10:53.065 INFO:teuthology.orchestra.run.smithi050.stdout:(12/13): python3-rsa-4.9-2.el9.noarch.rpm 706 kB/s | 59 kB 00:00 2024-09-11T03:10:53.098 INFO:teuthology.orchestra.run.smithi050.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 7.2 MB/s | 1.0 MB 00:00 2024-09-11T03:10:53.101 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:10:53.101 INFO:teuthology.orchestra.run.smithi050.stdout:Total 3.3 MB/s | 2.2 MB 00:00 2024-09-11T03:10:53.168 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:10:53.185 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:10:53.185 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:10:53.281 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:10:53.283 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:10:53.289 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-11T03:10:53.339 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-11T03:10:53.372 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-11T03:10:53.421 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-11T03:10:53.459 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-mgr-rook-2:19.3.0-4854.g8f219c47.el9.noarch 13/13 2024-09-11T03:10:53.805 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:10:53.990 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-11T03:10:54.119 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-11T03:10:54.174 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-11T03:10:54.209 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-11T03:10:54.247 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-mgr-rook-2:19.3.0-4854.g8f219c47.el9.noarch 13/13 2024-09-11T03:10:54.247 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-mgr-rook-2:19.3.0-4854.g8f219c47.el9.noarch 1/13 2024-09-11T03:10:54.247 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-11T03:10:54.248 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-11T03:10:54.248 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-11T03:10:54.248 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-11T03:10:54.248 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-11T03:10:54.248 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-11T03:10:54.248 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-11T03:10:54.248 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-11T03:10:54.248 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-11T03:10:54.248 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-11T03:10:54.248 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-11T03:10:54.251 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-11T03:10:54.358 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-11T03:10:54.478 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-11T03:10:54.529 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-11T03:10:54.590 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-11T03:10:54.590 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:54.590 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:10:54.590 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mgr-rook-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:54.590 INFO:teuthology.orchestra.run.smithi120.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-11T03:10:54.590 INFO:teuthology.orchestra.run.smithi120.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-11T03:10:54.591 INFO:teuthology.orchestra.run.smithi120.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-11T03:10:54.591 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-11T03:10:54.591 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-11T03:10:54.591 INFO:teuthology.orchestra.run.smithi120.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-11T03:10:54.591 INFO:teuthology.orchestra.run.smithi120.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-11T03:10:54.591 INFO:teuthology.orchestra.run.smithi120.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-11T03:10:54.591 INFO:teuthology.orchestra.run.smithi120.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-11T03:10:54.591 INFO:teuthology.orchestra.run.smithi120.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-11T03:10:54.591 INFO:teuthology.orchestra.run.smithi120.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-11T03:10:54.591 INFO:teuthology.orchestra.run.smithi120.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-11T03:10:54.591 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:54.591 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:10:54.862 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install ceph-mgr-cephadm 2024-09-11T03:10:55.295 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-11T03:10:55.350 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-11T03:10:55.392 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-11T03:10:55.428 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:32 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:10:55.450 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-11T03:10:55.478 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mgr-rook-2:19.3.0-4854.g8f219c47.el9.noarch 13/13 2024-09-11T03:10:55.562 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:10:55.562 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:55.562 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repository Size 2024-09-11T03:10:55.563 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:55.563 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:10:55.563 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mgr-cephadm noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 154 k 2024-09-11T03:10:55.563 INFO:teuthology.orchestra.run.smithi120.stdout:Installing dependencies: 2024-09-11T03:10:55.563 INFO:teuthology.orchestra.run.smithi120.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-11T03:10:55.563 INFO:teuthology.orchestra.run.smithi120.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-11T03:10:55.563 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-11T03:10:55.563 INFO:teuthology.orchestra.run.smithi120.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-11T03:10:55.563 INFO:teuthology.orchestra.run.smithi120.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-11T03:10:55.563 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:55.563 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:10:55.563 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:55.563 INFO:teuthology.orchestra.run.smithi120.stdout:Install 6 Packages 2024-09-11T03:10:55.564 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:55.564 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 7.0 M 2024-09-11T03:10:55.564 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 33 M 2024-09-11T03:10:55.564 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:10:56.083 INFO:teuthology.orchestra.run.smithi120.stdout:(1/6): ceph-mgr-cephadm-19.3.0-4854.g8f219c47.e 840 kB/s | 154 kB 00:00 2024-09-11T03:10:56.108 INFO:teuthology.orchestra.run.smithi120.stdout:(2/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.2 MB/s | 248 kB 00:00 2024-09-11T03:10:56.141 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mgr-rook-2:19.3.0-4854.g8f219c47.el9.noarch 13/13 2024-09-11T03:10:56.141 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mgr-rook-2:19.3.0-4854.g8f219c47.el9.noarch 1/13 2024-09-11T03:10:56.141 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-11T03:10:56.141 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-11T03:10:56.141 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-11T03:10:56.141 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-11T03:10:56.142 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-11T03:10:56.142 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-11T03:10:56.142 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-11T03:10:56.142 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-11T03:10:56.142 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-11T03:10:56.142 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-11T03:10:56.142 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-11T03:10:56.159 INFO:teuthology.orchestra.run.smithi120.stdout:(3/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 7.1 MB/s | 548 kB 00:00 2024-09-11T03:10:56.184 INFO:teuthology.orchestra.run.smithi120.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 767 kB/s | 58 kB 00:00 2024-09-11T03:10:56.209 INFO:teuthology.orchestra.run.smithi120.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.5 MB/s | 74 kB 00:00 2024-09-11T03:10:56.401 INFO:teuthology.orchestra.run.smithi120.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 12 MB/s | 6.0 MB 00:00 2024-09-11T03:10:56.403 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:10:56.403 INFO:teuthology.orchestra.run.smithi120.stdout:Total 8.4 MB/s | 7.0 MB 00:00 2024-09-11T03:10:56.473 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:10:56.483 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-11T03:10:56.483 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:56.483 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:10:56.483 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-rook-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:56.483 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-11T03:10:56.483 INFO:teuthology.orchestra.run.smithi050.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-11T03:10:56.483 INFO:teuthology.orchestra.run.smithi050.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-11T03:10:56.483 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-11T03:10:56.483 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-11T03:10:56.483 INFO:teuthology.orchestra.run.smithi050.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-11T03:10:56.483 INFO:teuthology.orchestra.run.smithi050.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-11T03:10:56.483 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-11T03:10:56.484 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-11T03:10:56.484 INFO:teuthology.orchestra.run.smithi050.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-11T03:10:56.484 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-11T03:10:56.484 INFO:teuthology.orchestra.run.smithi050.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-11T03:10:56.484 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:56.484 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:10:56.484 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:10:56.485 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:10:56.584 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:10:56.584 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:10:56.730 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-mgr-cephadm 2024-09-11T03:10:56.891 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:10:57.073 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-11T03:10:57.128 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-11T03:10:57.323 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:32 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:10:57.462 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:10:57.463 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:57.463 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-09-11T03:10:57.463 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:57.463 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:10:57.463 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-cephadm noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 154 k 2024-09-11T03:10:57.463 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-09-11T03:10:57.464 INFO:teuthology.orchestra.run.smithi050.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-11T03:10:57.464 INFO:teuthology.orchestra.run.smithi050.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-11T03:10:57.464 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-11T03:10:57.464 INFO:teuthology.orchestra.run.smithi050.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-11T03:10:57.464 INFO:teuthology.orchestra.run.smithi050.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-11T03:10:57.464 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:57.464 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:10:57.464 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:10:57.464 INFO:teuthology.orchestra.run.smithi050.stdout:Install 6 Packages 2024-09-11T03:10:57.464 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:10:57.465 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 7.0 M 2024-09-11T03:10:57.465 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 33 M 2024-09-11T03:10:57.465 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:10:57.647 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-11T03:10:57.732 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-11T03:10:57.798 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-11T03:10:57.824 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-mgr-cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 6/6 2024-09-11T03:10:58.476 INFO:teuthology.orchestra.run.smithi050.stdout:(1/6): ceph-mgr-cephadm-19.3.0-4854.g8f219c47.e 567 kB/s | 154 kB 00:00 2024-09-11T03:10:58.526 INFO:teuthology.orchestra.run.smithi050.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 11 MB/s | 548 kB 00:00 2024-09-11T03:10:58.551 INFO:teuthology.orchestra.run.smithi050.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 2.3 MB/s | 58 kB 00:00 2024-09-11T03:10:58.577 INFO:teuthology.orchestra.run.smithi050.stdout:(4/6): python3-typing-extensions-4.12.2-2.el9.n 2.9 MB/s | 74 kB 00:00 2024-09-11T03:10:58.666 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 6/6 2024-09-11T03:10:58.667 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-mgr-cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/6 2024-09-11T03:10:58.667 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-11T03:10:58.667 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-11T03:10:58.667 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-11T03:10:58.667 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-11T03:10:58.844 INFO:teuthology.orchestra.run.smithi050.stdout:(5/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 388 kB/s | 248 kB 00:00 2024-09-11T03:10:58.961 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-11T03:10:58.961 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:58.961 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:10:58.961 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-mgr-cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:10:58.961 INFO:teuthology.orchestra.run.smithi120.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-11T03:10:58.962 INFO:teuthology.orchestra.run.smithi120.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-11T03:10:58.962 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-11T03:10:58.962 INFO:teuthology.orchestra.run.smithi120.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-11T03:10:58.962 INFO:teuthology.orchestra.run.smithi120.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-11T03:10:58.962 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:58.962 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:10:59.231 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install ceph-fuse 2024-09-11T03:10:59.793 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:36 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:10:59.928 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:10:59.928 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:59.928 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repository Size 2024-09-11T03:10:59.928 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:59.928 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:10:59.929 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-fuse x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 900 k 2024-09-11T03:10:59.929 INFO:teuthology.orchestra.run.smithi120.stdout:Installing dependencies: 2024-09-11T03:10:59.929 INFO:teuthology.orchestra.run.smithi120.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-11T03:10:59.929 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:59.929 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:10:59.929 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:10:59.929 INFO:teuthology.orchestra.run.smithi120.stdout:Install 2 Packages 2024-09-11T03:10:59.929 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:10:59.930 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 980 k 2024-09-11T03:10:59.930 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 2.9 M 2024-09-11T03:10:59.930 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:11:00.159 INFO:teuthology.orchestra.run.smithi120.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 440 kB/s | 80 kB 00:00 2024-09-11T03:11:00.296 INFO:teuthology.orchestra.run.smithi120.stdout:(2/2): ceph-fuse-19.3.0-4854.g8f219c47.el9.x86_ 2.8 MB/s | 900 kB 00:00 2024-09-11T03:11:00.297 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:00.297 INFO:teuthology.orchestra.run.smithi120.stdout:Total 2.6 MB/s | 980 kB 00:00 2024-09-11T03:11:00.309 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:11:00.330 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:11:00.330 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:11:00.411 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:11:00.411 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:11:00.603 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:11:00.745 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-11T03:11:00.820 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 2/2 2024-09-11T03:11:00.894 INFO:teuthology.orchestra.run.smithi050.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 2.2 MB/s | 6.0 MB 00:02 2024-09-11T03:11:00.896 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:00.896 INFO:teuthology.orchestra.run.smithi050.stdout:Total 2.0 MB/s | 7.0 MB 00:03 2024-09-11T03:11:00.971 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:11:00.983 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:11:00.983 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:11:01.092 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:11:01.092 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:11:01.445 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:11:01.470 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 2/2 2024-09-11T03:11:01.470 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 1/2 2024-09-11T03:11:01.624 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-11T03:11:01.680 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-11T03:11:01.764 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-11T03:11:01.764 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:01.764 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:11:01.765 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-11T03:11:01.765 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:01.765 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:02.041 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install ceph-volume 2024-09-11T03:11:02.235 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-11T03:11:02.334 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-11T03:11:02.410 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-11T03:11:02.442 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mgr-cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 6/6 2024-09-11T03:11:02.620 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:39 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:11:02.760 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:11:02.761 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:02.761 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repository Size 2024-09-11T03:11:02.761 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:02.761 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:11:02.761 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-volume noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 285 k 2024-09-11T03:11:02.761 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:02.761 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:11:02.761 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:02.761 INFO:teuthology.orchestra.run.smithi120.stdout:Install 1 Package 2024-09-11T03:11:02.761 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:02.761 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 285 k 2024-09-11T03:11:02.761 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 1.3 M 2024-09-11T03:11:02.762 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:11:03.003 INFO:teuthology.orchestra.run.smithi120.stdout:ceph-volume-19.3.0-4854.g8f219c47.el9.noarch.rp 1.2 MB/s | 285 kB 00:00 2024-09-11T03:11:03.004 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:03.004 INFO:teuthology.orchestra.run.smithi120.stdout:Total 1.1 MB/s | 285 kB 00:00 2024-09-11T03:11:03.004 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:11:03.012 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:11:03.012 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:11:03.041 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:11:03.041 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:11:03.193 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 6/6 2024-09-11T03:11:03.194 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mgr-cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/6 2024-09-11T03:11:03.194 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-11T03:11:03.194 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-11T03:11:03.194 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-11T03:11:03.194 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-11T03:11:03.262 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:11:03.330 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : ceph-volume-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:11:03.346 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: ceph-volume-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:11:03.346 INFO:teuthology.orchestra.run.smithi120.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:11:03.346 INFO:teuthology.orchestra.run.smithi120.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-11T03:11:03.346 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:03.480 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-11T03:11:03.480 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:03.481 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:11:03.481 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:11:03.481 INFO:teuthology.orchestra.run.smithi050.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-11T03:11:03.481 INFO:teuthology.orchestra.run.smithi050.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-11T03:11:03.481 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-11T03:11:03.481 INFO:teuthology.orchestra.run.smithi050.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-11T03:11:03.481 INFO:teuthology.orchestra.run.smithi050.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-11T03:11:03.481 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:03.481 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:03.732 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-fuse 2024-09-11T03:11:04.328 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:39 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:04.371 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : ceph-volume-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:11:04.372 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:04.372 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:11:04.372 INFO:teuthology.orchestra.run.smithi120.stdout: ceph-volume-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:11:04.372 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:04.372 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:04.466 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:04.466 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:04.467 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-09-11T03:11:04.467 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:04.467 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:11:04.467 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-fuse x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 900 k 2024-09-11T03:11:04.467 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-09-11T03:11:04.467 INFO:teuthology.orchestra.run.smithi050.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-11T03:11:04.467 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:04.467 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:11:04.467 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:04.467 INFO:teuthology.orchestra.run.smithi050.stdout:Install 2 Packages 2024-09-11T03:11:04.467 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:04.468 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 980 k 2024-09-11T03:11:04.468 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 2.9 M 2024-09-11T03:11:04.468 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:11:04.686 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install librados-devel 2024-09-11T03:11:04.754 INFO:teuthology.orchestra.run.smithi050.stdout:(1/2): ceph-fuse-19.3.0-4854.g8f219c47.el9.x86_ 3.3 MB/s | 900 kB 00:00 2024-09-11T03:11:04.962 INFO:teuthology.orchestra.run.smithi050.stdout:(2/2): fuse-2.9.9-16.el9.x86_64.rpm 169 kB/s | 80 kB 00:00 2024-09-11T03:11:04.963 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:04.963 INFO:teuthology.orchestra.run.smithi050.stdout:Total 1.9 MB/s | 980 kB 00:00 2024-09-11T03:11:04.976 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:11:05.001 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:11:05.001 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:11:05.088 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:11:05.088 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:11:05.266 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:42 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:11:05.279 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:11:05.403 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:11:05.403 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:05.403 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repo Size 2024-09-11T03:11:05.404 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:05.404 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:11:05.404 INFO:teuthology.orchestra.run.smithi120.stdout: librados-devel x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 127 k 2024-09-11T03:11:05.404 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:05.404 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:11:05.404 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:05.404 INFO:teuthology.orchestra.run.smithi120.stdout:Install 1 Package 2024-09-11T03:11:05.404 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:05.405 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 127 k 2024-09-11T03:11:05.405 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 456 k 2024-09-11T03:11:05.405 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:11:05.428 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-11T03:11:05.506 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 2/2 2024-09-11T03:11:05.618 INFO:teuthology.orchestra.run.smithi120.stdout:librados-devel-19.3.0-4854.g8f219c47.el9.x86_64 594 kB/s | 127 kB 00:00 2024-09-11T03:11:05.618 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:05.619 INFO:teuthology.orchestra.run.smithi120.stdout:Total 590 kB/s | 127 kB 00:00 2024-09-11T03:11:05.619 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:11:05.624 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:11:05.624 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:11:05.695 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:11:05.695 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:11:05.848 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:11:05.958 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : librados-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:06.240 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 2/2 2024-09-11T03:11:06.241 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 1/2 2024-09-11T03:11:06.389 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: librados-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:06.550 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-11T03:11:06.550 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:06.550 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:11:06.550 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-11T03:11:06.550 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:06.550 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:06.664 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : librados-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:06.664 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:06.664 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:11:06.664 INFO:teuthology.orchestra.run.smithi120.stdout: librados-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:11:06.664 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:06.664 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:06.851 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-volume 2024-09-11T03:11:06.961 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install libcephfs2 2024-09-11T03:11:07.450 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:42 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:07.557 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:44 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:11:07.592 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:07.593 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:07.593 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-09-11T03:11:07.593 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:07.593 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:11:07.593 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-volume noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 285 k 2024-09-11T03:11:07.594 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:07.594 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:11:07.594 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:07.594 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-09-11T03:11:07.594 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:07.594 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 285 k 2024-09-11T03:11:07.594 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 1.3 M 2024-09-11T03:11:07.594 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:11:07.651 INFO:teuthology.orchestra.run.smithi120.stdout:Package libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:07.698 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:11:07.698 INFO:teuthology.orchestra.run.smithi120.stdout:Nothing to do. 2024-09-11T03:11:07.699 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:07.771 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install libcephfs-devel 2024-09-11T03:11:07.835 INFO:teuthology.orchestra.run.smithi050.stdout:ceph-volume-19.3.0-4854.g8f219c47.el9.noarch.rp 1.2 MB/s | 285 kB 00:00 2024-09-11T03:11:07.835 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:07.836 INFO:teuthology.orchestra.run.smithi050.stdout:Total 1.1 MB/s | 285 kB 00:00 2024-09-11T03:11:07.836 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:11:07.845 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:11:07.868 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:11:07.876 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:11:07.876 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:11:08.109 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:11:08.203 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-volume-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:11:08.221 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-volume-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:11:08.222 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:11:08.222 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-11T03:11:08.222 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:08.363 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:45 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:11:08.498 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:11:08.499 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:08.499 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repo Size 2024-09-11T03:11:08.499 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:08.499 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:11:08.499 INFO:teuthology.orchestra.run.smithi120.stdout: libcephfs-devel x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 32 k 2024-09-11T03:11:08.499 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:08.499 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:11:08.499 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:08.499 INFO:teuthology.orchestra.run.smithi120.stdout:Install 1 Package 2024-09-11T03:11:08.499 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:08.499 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 32 k 2024-09-11T03:11:08.499 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 142 k 2024-09-11T03:11:08.500 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:11:08.641 INFO:teuthology.orchestra.run.smithi120.stdout:libcephfs-devel-19.3.0-4854.g8f219c47.el9.x86_6 225 kB/s | 32 kB 00:00 2024-09-11T03:11:08.641 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:08.642 INFO:teuthology.orchestra.run.smithi120.stdout:Total 222 kB/s | 32 kB 00:00 2024-09-11T03:11:08.642 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:11:08.645 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:11:08.646 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:11:08.673 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:11:08.674 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:11:08.758 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:11:08.872 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : libcephfs-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:09.264 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-volume-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:11:09.264 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:09.264 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:11:09.264 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-volume-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:11:09.264 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:09.264 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:09.294 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: libcephfs-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:09.535 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : libcephfs-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:09.535 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:09.536 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:11:09.536 INFO:teuthology.orchestra.run.smithi120.stdout: libcephfs-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:11:09.536 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:09.536 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:09.560 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install librados-devel 2024-09-11T03:11:09.738 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install librados2 2024-09-11T03:11:10.159 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:45 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:10.301 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:10.302 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:10.302 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repo Size 2024-09-11T03:11:10.302 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:10.302 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:11:10.302 INFO:teuthology.orchestra.run.smithi050.stdout: librados-devel x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 127 k 2024-09-11T03:11:10.302 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:10.302 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:11:10.302 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:10.302 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-09-11T03:11:10.302 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:10.303 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 127 k 2024-09-11T03:11:10.303 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 456 k 2024-09-11T03:11:10.303 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:11:10.305 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:47 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:11:10.396 INFO:teuthology.orchestra.run.smithi120.stdout:Package librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:10.440 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:11:10.441 INFO:teuthology.orchestra.run.smithi120.stdout:Nothing to do. 2024-09-11T03:11:10.441 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:10.511 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install librbd1 2024-09-11T03:11:10.515 INFO:teuthology.orchestra.run.smithi050.stdout:librados-devel-19.3.0-4854.g8f219c47.el9.x86_64 596 kB/s | 127 kB 00:00 2024-09-11T03:11:10.516 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:10.517 INFO:teuthology.orchestra.run.smithi050.stdout:Total 591 kB/s | 127 kB 00:00 2024-09-11T03:11:10.517 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:11:10.522 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:11:10.522 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:11:10.596 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:11:10.596 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:11:10.754 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:11:10.858 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : librados-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:11.074 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:48 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:11:11.164 INFO:teuthology.orchestra.run.smithi120.stdout:Package librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:11.208 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:11:11.209 INFO:teuthology.orchestra.run.smithi120.stdout:Nothing to do. 2024-09-11T03:11:11.209 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:11.278 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install python3-rados 2024-09-11T03:11:11.312 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: librados-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:11.589 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librados-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:11.589 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:11.589 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:11:11.589 INFO:teuthology.orchestra.run.smithi050.stdout: librados-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:11:11.589 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:11.589 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:11.841 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install libcephfs2 2024-09-11T03:11:11.845 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:48 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:11:11.935 INFO:teuthology.orchestra.run.smithi120.stdout:Package python3-rados-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:11.978 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:11:11.979 INFO:teuthology.orchestra.run.smithi120.stdout:Nothing to do. 2024-09-11T03:11:11.979 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:12.041 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install python3-rgw 2024-09-11T03:11:12.443 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:47 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:12.537 INFO:teuthology.orchestra.run.smithi050.stdout:Package libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:12.582 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:12.584 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-09-11T03:11:12.584 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:12.604 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:49 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:11:12.652 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install libcephfs-devel 2024-09-11T03:11:12.694 INFO:teuthology.orchestra.run.smithi120.stdout:Package python3-rgw-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:12.737 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:11:12.738 INFO:teuthology.orchestra.run.smithi120.stdout:Nothing to do. 2024-09-11T03:11:12.738 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:12.809 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install python3-cephfs 2024-09-11T03:11:13.250 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:48 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:13.377 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:50 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:11:13.391 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:13.391 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:13.391 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repo Size 2024-09-11T03:11:13.391 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:13.391 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:11:13.391 INFO:teuthology.orchestra.run.smithi050.stdout: libcephfs-devel x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 32 k 2024-09-11T03:11:13.392 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:13.392 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:11:13.392 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:13.392 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-09-11T03:11:13.392 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:13.392 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 32 k 2024-09-11T03:11:13.393 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 142 k 2024-09-11T03:11:13.393 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:11:13.466 INFO:teuthology.orchestra.run.smithi120.stdout:Package python3-cephfs-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:13.509 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:11:13.510 INFO:teuthology.orchestra.run.smithi120.stdout:Nothing to do. 2024-09-11T03:11:13.510 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:13.536 INFO:teuthology.orchestra.run.smithi050.stdout:libcephfs-devel-19.3.0-4854.g8f219c47.el9.x86_6 221 kB/s | 32 kB 00:00 2024-09-11T03:11:13.537 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:13.537 INFO:teuthology.orchestra.run.smithi050.stdout:Total 219 kB/s | 32 kB 00:00 2024-09-11T03:11:13.537 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:11:13.541 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:11:13.541 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:11:13.561 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:11:13.561 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:11:13.587 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install python3-rbd 2024-09-11T03:11:13.652 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:11:13.786 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libcephfs-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:14.150 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:51 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:11:14.181 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: libcephfs-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:14.238 INFO:teuthology.orchestra.run.smithi120.stdout:Package python3-rbd-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:14.281 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:11:14.282 INFO:teuthology.orchestra.run.smithi120.stdout:Nothing to do. 2024-09-11T03:11:14.282 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:14.353 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install rbd-fuse 2024-09-11T03:11:14.420 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libcephfs-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:14.420 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:14.420 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:11:14.420 INFO:teuthology.orchestra.run.smithi050.stdout: libcephfs-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:11:14.420 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:14.420 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:14.601 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install librados2 2024-09-11T03:11:14.941 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:51 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:11:15.076 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:11:15.076 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:15.077 INFO:teuthology.orchestra.run.smithi120.stdout: Package Architecture Version Repository Size 2024-09-11T03:11:15.077 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:15.077 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:11:15.077 INFO:teuthology.orchestra.run.smithi120.stdout: rbd-fuse x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 85 k 2024-09-11T03:11:15.077 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:15.077 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:11:15.077 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:15.077 INFO:teuthology.orchestra.run.smithi120.stdout:Install 1 Package 2024-09-11T03:11:15.077 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:15.077 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 85 k 2024-09-11T03:11:15.077 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 231 k 2024-09-11T03:11:15.077 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:11:15.194 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:50 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:15.278 INFO:teuthology.orchestra.run.smithi120.stdout:rbd-fuse-19.3.0-4854.g8f219c47.el9.x86_64.rpm 424 kB/s | 85 kB 00:00 2024-09-11T03:11:15.278 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:15.279 INFO:teuthology.orchestra.run.smithi120.stdout:Total 421 kB/s | 85 kB 00:00 2024-09-11T03:11:15.279 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:11:15.286 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:11:15.286 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:11:15.286 INFO:teuthology.orchestra.run.smithi050.stdout:Package librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:15.332 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:15.333 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-09-11T03:11:15.333 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:15.350 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:11:15.351 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:11:15.405 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install librbd1 2024-09-11T03:11:15.547 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:11:15.651 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : rbd-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:15.996 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:50 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:16.076 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: rbd-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:16.089 INFO:teuthology.orchestra.run.smithi050.stdout:Package librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:16.135 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:16.136 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-09-11T03:11:16.136 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:16.200 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install python3-rados 2024-09-11T03:11:16.354 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : rbd-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:16.355 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:16.355 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:11:16.355 INFO:teuthology.orchestra.run.smithi120.stdout: rbd-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:11:16.355 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:16.355 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:16.573 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install rbd-mirror 2024-09-11T03:11:16.793 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:51 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:16.887 INFO:teuthology.orchestra.run.smithi050.stdout:Package python3-rados-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:16.933 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:16.934 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-09-11T03:11:16.934 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:17.003 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install python3-rgw 2024-09-11T03:11:17.149 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:54 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:11:17.284 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:11:17.285 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:17.285 INFO:teuthology.orchestra.run.smithi120.stdout: Package Arch Version Repo Size 2024-09-11T03:11:17.285 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:17.285 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:11:17.285 INFO:teuthology.orchestra.run.smithi120.stdout: rbd-mirror x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 3.2 M 2024-09-11T03:11:17.285 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:17.285 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:11:17.286 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:17.286 INFO:teuthology.orchestra.run.smithi120.stdout:Install 1 Package 2024-09-11T03:11:17.286 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:17.286 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 3.2 M 2024-09-11T03:11:17.286 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 14 M 2024-09-11T03:11:17.286 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:11:17.592 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:52 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:17.686 INFO:teuthology.orchestra.run.smithi050.stdout:Package python3-rgw-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:17.732 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:17.733 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-09-11T03:11:17.733 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:17.804 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install python3-cephfs 2024-09-11T03:11:17.842 INFO:teuthology.orchestra.run.smithi120.stdout:rbd-mirror-19.3.0-4854.g8f219c47.el9.x86_64.rpm 5.7 MB/s | 3.2 MB 00:00 2024-09-11T03:11:17.843 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:17.843 INFO:teuthology.orchestra.run.smithi120.stdout:Total 5.7 MB/s | 3.2 MB 00:00 2024-09-11T03:11:17.843 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:11:17.852 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:11:17.852 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:11:17.935 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:11:17.935 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:11:18.375 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:11:18.397 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:53 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:18.451 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : rbd-mirror-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:18.477 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: rbd-mirror-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:18.477 INFO:teuthology.orchestra.run.smithi120.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:11:18.477 INFO:teuthology.orchestra.run.smithi120.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-11T03:11:18.477 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-11T03:11:18.477 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-11T03:11:18.477 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:18.492 INFO:teuthology.orchestra.run.smithi050.stdout:Package python3-cephfs-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:18.538 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:18.539 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-09-11T03:11:18.539 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:18.620 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install python3-rbd 2024-09-11T03:11:19.213 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:54 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:19.306 INFO:teuthology.orchestra.run.smithi050.stdout:Package python3-rbd-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:11:19.353 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:19.354 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-09-11T03:11:19.354 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:19.433 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install rbd-fuse 2024-09-11T03:11:19.652 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : rbd-mirror-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:19.653 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:19.653 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:11:19.653 INFO:teuthology.orchestra.run.smithi120.stdout: rbd-mirror-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:11:19.653 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:19.653 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:19.884 DEBUG:teuthology.orchestra.run.smithi120:> sudo yum -y install rbd-nbd 2024-09-11T03:11:20.025 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:55 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:20.165 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:20.166 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:20.166 INFO:teuthology.orchestra.run.smithi050.stdout: Package Architecture Version Repository Size 2024-09-11T03:11:20.166 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:20.166 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:11:20.166 INFO:teuthology.orchestra.run.smithi050.stdout: rbd-fuse x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 85 k 2024-09-11T03:11:20.166 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:20.166 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:11:20.166 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:20.167 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-09-11T03:11:20.167 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:20.167 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 85 k 2024-09-11T03:11:20.167 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 231 k 2024-09-11T03:11:20.167 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:11:20.366 INFO:teuthology.orchestra.run.smithi050.stdout:rbd-fuse-19.3.0-4854.g8f219c47.el9.x86_64.rpm 429 kB/s | 85 kB 00:00 2024-09-11T03:11:20.366 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:20.367 INFO:teuthology.orchestra.run.smithi050.stdout:Total 426 kB/s | 85 kB 00:00 2024-09-11T03:11:20.367 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:11:20.374 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:11:20.374 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:11:20.443 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:11:20.443 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:11:20.470 INFO:teuthology.orchestra.run.smithi120.stdout:Last metadata expiration check: 0:01:57 ago on Wed 11 Sep 2024 03:09:23 AM UTC. 2024-09-11T03:11:20.604 INFO:teuthology.orchestra.run.smithi120.stdout:Dependencies resolved. 2024-09-11T03:11:20.604 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:20.605 INFO:teuthology.orchestra.run.smithi120.stdout: Package Architecture Version Repository Size 2024-09-11T03:11:20.605 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:20.605 INFO:teuthology.orchestra.run.smithi120.stdout:Installing: 2024-09-11T03:11:20.605 INFO:teuthology.orchestra.run.smithi120.stdout: rbd-nbd x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 171 k 2024-09-11T03:11:20.605 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:20.605 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction Summary 2024-09-11T03:11:20.605 INFO:teuthology.orchestra.run.smithi120.stdout:================================================================================ 2024-09-11T03:11:20.605 INFO:teuthology.orchestra.run.smithi120.stdout:Install 1 Package 2024-09-11T03:11:20.605 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:20.606 INFO:teuthology.orchestra.run.smithi120.stdout:Total download size: 171 k 2024-09-11T03:11:20.606 INFO:teuthology.orchestra.run.smithi120.stdout:Installed size: 490 k 2024-09-11T03:11:20.606 INFO:teuthology.orchestra.run.smithi120.stdout:Downloading Packages: 2024-09-11T03:11:20.640 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:11:20.733 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : rbd-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:20.811 INFO:teuthology.orchestra.run.smithi120.stdout:rbd-nbd-19.3.0-4854.g8f219c47.el9.x86_64.rpm 828 kB/s | 171 kB 00:00 2024-09-11T03:11:20.812 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:20.812 INFO:teuthology.orchestra.run.smithi120.stdout:Total 823 kB/s | 171 kB 00:00 2024-09-11T03:11:20.812 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction check 2024-09-11T03:11:20.820 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction check succeeded. 2024-09-11T03:11:20.820 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction test 2024-09-11T03:11:20.884 INFO:teuthology.orchestra.run.smithi120.stdout:Transaction test succeeded. 2024-09-11T03:11:20.884 INFO:teuthology.orchestra.run.smithi120.stdout:Running transaction 2024-09-11T03:11:21.037 INFO:teuthology.orchestra.run.smithi120.stdout: Preparing : 1/1 2024-09-11T03:11:21.138 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: rbd-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:21.150 INFO:teuthology.orchestra.run.smithi120.stdout: Installing : rbd-nbd-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:21.402 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : rbd-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:21.402 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:21.402 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:11:21.402 INFO:teuthology.orchestra.run.smithi050.stdout: rbd-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:11:21.402 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:21.402 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:21.573 INFO:teuthology.orchestra.run.smithi120.stdout: Running scriptlet: rbd-nbd-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:21.612 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install rbd-mirror 2024-09-11T03:11:21.869 INFO:teuthology.orchestra.run.smithi120.stdout: Verifying : rbd-nbd-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:21.870 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:21.870 INFO:teuthology.orchestra.run.smithi120.stdout:Installed: 2024-09-11T03:11:21.870 INFO:teuthology.orchestra.run.smithi120.stdout: rbd-nbd-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:11:21.870 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:11:21.870 INFO:teuthology.orchestra.run.smithi120.stdout:Complete! 2024-09-11T03:11:22.142 DEBUG:teuthology.parallel:result is None 2024-09-11T03:11:22.209 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:57 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:22.348 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:22.348 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:22.349 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repo Size 2024-09-11T03:11:22.349 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:22.349 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:11:22.349 INFO:teuthology.orchestra.run.smithi050.stdout: rbd-mirror x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 3.2 M 2024-09-11T03:11:22.349 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:22.349 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:11:22.349 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:22.349 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-09-11T03:11:22.349 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:22.349 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 3.2 M 2024-09-11T03:11:22.349 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 14 M 2024-09-11T03:11:22.349 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:11:22.677 INFO:teuthology.orchestra.run.smithi050.stdout:rbd-mirror-19.3.0-4854.g8f219c47.el9.x86_64.rpm 9.7 MB/s | 3.2 MB 00:00 2024-09-11T03:11:22.678 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:22.678 INFO:teuthology.orchestra.run.smithi050.stdout:Total 9.7 MB/s | 3.2 MB 00:00 2024-09-11T03:11:22.678 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:11:22.689 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:11:22.689 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:11:22.775 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:11:22.775 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:11:23.240 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:11:23.312 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : rbd-mirror-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:23.338 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: rbd-mirror-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:23.338 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:11:23.338 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-11T03:11:23.338 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-09-11T03:11:23.338 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-09-11T03:11:23.338 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:24.424 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : rbd-mirror-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:24.424 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:24.425 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:11:24.425 INFO:teuthology.orchestra.run.smithi050.stdout: rbd-mirror-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:11:24.425 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:24.425 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:24.642 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install rbd-nbd 2024-09-11T03:11:25.238 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:02:00 ago on Wed 11 Sep 2024 03:09:25 AM UTC. 2024-09-11T03:11:25.377 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-11T03:11:25.378 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:25.378 INFO:teuthology.orchestra.run.smithi050.stdout: Package Architecture Version Repository Size 2024-09-11T03:11:25.378 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:25.378 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-11T03:11:25.378 INFO:teuthology.orchestra.run.smithi050.stdout: rbd-nbd x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 171 k 2024-09-11T03:11:25.378 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:25.378 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-11T03:11:25.379 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-11T03:11:25.379 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-09-11T03:11:25.379 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:25.379 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 171 k 2024-09-11T03:11:25.379 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 490 k 2024-09-11T03:11:25.379 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-11T03:11:25.601 INFO:teuthology.orchestra.run.smithi050.stdout:rbd-nbd-19.3.0-4854.g8f219c47.el9.x86_64.rpm 770 kB/s | 171 kB 00:00 2024-09-11T03:11:25.601 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:11:25.602 INFO:teuthology.orchestra.run.smithi050.stdout:Total 765 kB/s | 171 kB 00:00 2024-09-11T03:11:25.602 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-11T03:11:25.610 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-11T03:11:25.611 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-11T03:11:25.679 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-11T03:11:25.679 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-11T03:11:25.840 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-11T03:11:25.952 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : rbd-nbd-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:26.401 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: rbd-nbd-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:26.685 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : rbd-nbd-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:11:26.685 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:26.685 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-11T03:11:26.685 INFO:teuthology.orchestra.run.smithi050.stdout: rbd-nbd-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:11:26.685 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:11:26.685 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-11T03:11:26.925 DEBUG:teuthology.parallel:result is None 2024-09-11T03:12:49.979 INFO:teuthology.orchestra.run.smithi165.stdout:Extra Packages for Enterprise Linux 119 kB/s | 23 MB 03:14 2024-09-11T03:12:55.377 INFO:teuthology.orchestra.run.smithi165.stdout:lab-extras 29 kB/s | 1.7 kB 00:00 2024-09-11T03:12:57.762 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:12:57.764 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:12:57.764 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repository Size 2024-09-11T03:12:57.764 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:12:57.764 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:12:57.764 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-radosgw x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 11 M 2024-09-11T03:12:57.764 INFO:teuthology.orchestra.run.smithi165.stdout:Upgrading: 2024-09-11T03:12:57.765 INFO:teuthology.orchestra.run.smithi165.stdout: librados2 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 3.5 M 2024-09-11T03:12:57.765 INFO:teuthology.orchestra.run.smithi165.stdout: librbd1 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 3.2 M 2024-09-11T03:12:57.765 INFO:teuthology.orchestra.run.smithi165.stdout:Installing dependencies: 2024-09-11T03:12:57.765 INFO:teuthology.orchestra.run.smithi165.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-11T03:12:57.765 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-base x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 5.5 M 2024-09-11T03:12:57.765 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-common x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 22 M 2024-09-11T03:12:57.765 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-selinux x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 25 k 2024-09-11T03:12:57.765 INFO:teuthology.orchestra.run.smithi165.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-09-11T03:12:57.765 INFO:teuthology.orchestra.run.smithi165.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-11T03:12:57.765 INFO:teuthology.orchestra.run.smithi165.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-11T03:12:57.766 INFO:teuthology.orchestra.run.smithi165.stdout: libcephfs2 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 755 k 2024-09-11T03:12:57.766 INFO:teuthology.orchestra.run.smithi165.stdout: libnbd x86_64 1.20.2-2.el9 appstream 171 k 2024-09-11T03:12:57.766 INFO:teuthology.orchestra.run.smithi165.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-11T03:12:57.766 INFO:teuthology.orchestra.run.smithi165.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-11T03:12:57.766 INFO:teuthology.orchestra.run.smithi165.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-11T03:12:57.766 INFO:teuthology.orchestra.run.smithi165.stdout: libradosstriper1 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 507 k 2024-09-11T03:12:57.766 INFO:teuthology.orchestra.run.smithi165.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-11T03:12:57.766 INFO:teuthology.orchestra.run.smithi165.stdout: librgw2 x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 5.5 M 2024-09-11T03:12:57.766 INFO:teuthology.orchestra.run.smithi165.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-11T03:12:57.766 INFO:teuthology.orchestra.run.smithi165.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-11T03:12:57.767 INFO:teuthology.orchestra.run.smithi165.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-11T03:12:57.767 INFO:teuthology.orchestra.run.smithi165.stdout: python3-ceph-argparse x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 45 k 2024-09-11T03:12:57.767 INFO:teuthology.orchestra.run.smithi165.stdout: python3-ceph-common x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 143 k 2024-09-11T03:12:57.767 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cephfs x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 161 k 2024-09-11T03:12:57.767 INFO:teuthology.orchestra.run.smithi165.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-11T03:12:57.767 INFO:teuthology.orchestra.run.smithi165.stdout: python3-rados x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 321 k 2024-09-11T03:12:57.767 INFO:teuthology.orchestra.run.smithi165.stdout: python3-rbd x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 306 k 2024-09-11T03:12:57.767 INFO:teuthology.orchestra.run.smithi165.stdout: python3-rgw x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 99 k 2024-09-11T03:12:57.767 INFO:teuthology.orchestra.run.smithi165.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-09-11T03:12:57.767 INFO:teuthology.orchestra.run.smithi165.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-09-11T03:12:57.767 INFO:teuthology.orchestra.run.smithi165.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-11T03:12:57.767 INFO:teuthology.orchestra.run.smithi165.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-11T03:12:57.768 INFO:teuthology.orchestra.run.smithi165.stdout:Installing weak dependencies: 2024-09-11T03:12:57.768 INFO:teuthology.orchestra.run.smithi165.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-09-11T03:12:57.768 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:12:57.768 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:12:57.768 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:12:57.768 INFO:teuthology.orchestra.run.smithi165.stdout:Install 31 Packages 2024-09-11T03:12:57.768 INFO:teuthology.orchestra.run.smithi165.stdout:Upgrade 2 Packages 2024-09-11T03:12:57.768 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:12:57.769 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 62 M 2024-09-11T03:12:57.769 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:12:58.720 INFO:teuthology.orchestra.run.smithi165.stdout:(1/33): ceph-base-19.3.0-4854.g8f219c47.el9.x86 11 MB/s | 5.5 MB 00:00 2024-09-11T03:12:58.795 INFO:teuthology.orchestra.run.smithi165.stdout:(2/33): ceph-selinux-19.3.0-4854.g8f219c47.el9. 335 kB/s | 25 kB 00:00 2024-09-11T03:12:58.904 INFO:teuthology.orchestra.run.smithi165.stdout:(3/33): libcephfs2-19.3.0-4854.g8f219c47.el9.x8 6.8 MB/s | 755 kB 00:00 2024-09-11T03:12:59.046 INFO:teuthology.orchestra.run.smithi165.stdout:(4/33): ceph-radosgw-19.3.0-4854.g8f219c47.el9. 13 MB/s | 11 MB 00:00 2024-09-11T03:12:59.079 INFO:teuthology.orchestra.run.smithi165.stdout:(5/33): libradosstriper1-19.3.0-4854.g8f219c47. 2.8 MB/s | 507 kB 00:00 2024-09-11T03:12:59.138 INFO:teuthology.orchestra.run.smithi165.stdout:(6/33): python3-ceph-argparse-19.3.0-4854.g8f21 774 kB/s | 45 kB 00:00 2024-09-11T03:12:59.405 INFO:teuthology.orchestra.run.smithi165.stdout:(7/33): ceph-common-19.3.0-4854.g8f219c47.el9.x 18 MB/s | 22 MB 00:01 2024-09-11T03:12:59.447 INFO:teuthology.orchestra.run.smithi165.stdout:(8/33): python3-ceph-common-19.3.0-4854.g8f219c 463 kB/s | 143 kB 00:00 2024-09-11T03:12:59.472 INFO:teuthology.orchestra.run.smithi165.stdout:(9/33): python3-cephfs-19.3.0-4854.g8f219c47.el 2.4 MB/s | 161 kB 00:00 2024-09-11T03:12:59.500 INFO:teuthology.orchestra.run.smithi165.stdout:(10/33): python3-rados-19.3.0-4854.g8f219c47.el 6.3 MB/s | 321 kB 00:00 2024-09-11T03:12:59.573 INFO:teuthology.orchestra.run.smithi165.stdout:(11/33): librgw2-19.3.0-4854.g8f219c47.el9.x86_ 10 MB/s | 5.5 MB 00:00 2024-09-11T03:12:59.598 INFO:teuthology.orchestra.run.smithi165.stdout:(12/33): python3-rbd-19.3.0-4854.g8f219c47.el9. 2.4 MB/s | 306 kB 00:00 2024-09-11T03:12:59.623 INFO:teuthology.orchestra.run.smithi165.stdout:(13/33): python3-rgw-19.3.0-4854.g8f219c47.el9. 792 kB/s | 99 kB 00:00 2024-09-11T03:12:59.741 INFO:teuthology.orchestra.run.smithi165.stdout:(14/33): boost-program-options-1.75.0-8.el9.x86 639 kB/s | 107 kB 00:00 2024-09-11T03:12:59.765 INFO:teuthology.orchestra.run.smithi165.stdout:(15/33): libnbd-1.20.2-2.el9.x86_64.rpm 1.0 MB/s | 171 kB 00:00 2024-09-11T03:12:59.791 INFO:teuthology.orchestra.run.smithi165.stdout:(16/33): libpmemobj-1.12.1-1.el9.x86_64.rpm 958 kB/s | 160 kB 00:00 2024-09-11T03:12:59.816 INFO:teuthology.orchestra.run.smithi165.stdout:(17/33): librabbitmq-0.11.0-7.el9.x86_64.rpm 600 kB/s | 45 kB 00:00 2024-09-11T03:12:59.866 INFO:teuthology.orchestra.run.smithi165.stdout:(18/33): python3-prettytable-0.7.2-27.el9.noarc 848 kB/s | 42 kB 00:00 2024-09-11T03:12:59.900 INFO:teuthology.orchestra.run.smithi165.stdout:(19/33): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.6 MB/s | 292 kB 00:00 2024-09-11T03:12:59.925 INFO:teuthology.orchestra.run.smithi165.stdout:(20/33): librdkafka-1.6.1-102.el9.x86_64.rpm 4.1 MB/s | 662 kB 00:00 2024-09-11T03:12:59.951 INFO:teuthology.orchestra.run.smithi165.stdout:(21/33): qatlib-service-24.02.0-1.el9.x86_64.rp 714 kB/s | 36 kB 00:00 2024-09-11T03:12:59.976 INFO:teuthology.orchestra.run.smithi165.stdout:(22/33): qatlib-24.02.0-1.el9.x86_64.rpm 2.0 MB/s | 221 kB 00:00 2024-09-11T03:13:00.001 INFO:teuthology.orchestra.run.smithi165.stdout:(23/33): qatzip-libs-1.2.0-1.el9.x86_64.rpm 628 kB/s | 47 kB 00:00 2024-09-11T03:13:00.060 INFO:teuthology.orchestra.run.smithi165.stdout:(24/33): gperftools-libs-2.9.1-2.el9.x86_64.rpm 2.8 MB/s | 309 kB 00:00 2024-09-11T03:13:00.085 INFO:teuthology.orchestra.run.smithi165.stdout:(25/33): liboath-2.6.7-2.el9.x86_64.rpm 2.1 MB/s | 49 kB 00:00 2024-09-11T03:13:00.110 INFO:teuthology.orchestra.run.smithi165.stdout:(26/33): libarrow-doc-9.0.0-11.el9.noarch.rpm 276 kB/s | 26 kB 00:00 2024-09-11T03:13:00.136 INFO:teuthology.orchestra.run.smithi165.stdout:(27/33): libunwind-1.6.2-1.el9.x86_64.rpm 1.3 MB/s | 67 kB 00:00 2024-09-11T03:13:00.169 INFO:teuthology.orchestra.run.smithi165.stdout:(28/33): re2-20211101-20.el9.x86_64.rpm 5.6 MB/s | 191 kB 00:00 2024-09-11T03:13:00.220 INFO:teuthology.orchestra.run.smithi165.stdout:(29/33): parquet-libs-9.0.0-11.el9.x86_64.rpm 7.5 MB/s | 839 kB 00:00 2024-09-11T03:13:00.262 INFO:teuthology.orchestra.run.smithi165.stdout:(30/33): thrift-0.15.0-2.el9.x86_64.rpm 17 MB/s | 1.6 MB 00:00 2024-09-11T03:13:00.345 INFO:teuthology.orchestra.run.smithi165.stdout:(31/33): libarrow-9.0.0-11.el9.x86_64.rpm 12 MB/s | 4.4 MB 00:00 2024-09-11T03:13:00.462 INFO:teuthology.orchestra.run.smithi165.stdout:(32/33): librados2-19.3.0-4854.g8f219c47.el9.x8 14 MB/s | 3.5 MB 00:00 2024-09-11T03:13:00.521 INFO:teuthology.orchestra.run.smithi165.stdout:(33/33): librbd1-19.3.0-4854.g8f219c47.el9.x86_ 13 MB/s | 3.2 MB 00:00 2024-09-11T03:13:00.526 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:13:00.526 INFO:teuthology.orchestra.run.smithi165.stdout:Total 22 MB/s | 62 MB 00:02 2024-09-11T03:13:00.634 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:13:00.671 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:13:00.672 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:13:01.176 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:13:01.176 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:13:02.649 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:13:02.733 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/35 2024-09-11T03:13:02.759 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/35 2024-09-11T03:13:02.784 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/35 2024-09-11T03:13:02.807 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/35 2024-09-11T03:13:02.840 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/35 2024-09-11T03:13:03.018 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/35 2024-09-11T03:13:03.071 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/35 2024-09-11T03:13:03.453 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/35 2024-09-11T03:13:03.520 INFO:teuthology.orchestra.run.smithi165.stdout: Upgrading : librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 7/35 2024-09-11T03:13:03.613 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 7/35 2024-09-11T03:13:03.703 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-rados-2:19.3.0-4854.g8f219c47.el9.x86_64 8/35 2024-09-11T03:13:03.729 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 9/35 2024-09-11T03:13:03.784 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 9/35 2024-09-11T03:13:03.821 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/35 2024-09-11T03:13:03.866 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-ceph-argparse-2:19.3.0-4854.g8f219c47.el9. 11/35 2024-09-11T03:13:03.958 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-cephfs-2:19.3.0-4854.g8f219c47.el9.x86_64 12/35 2024-09-11T03:13:03.982 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : libradosstriper1-2:19.3.0-4854.g8f219c47.el9.x86_6 13/35 2024-09-11T03:13:04.030 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: libradosstriper1-2:19.3.0-4854.g8f219c47.el9.x86_6 13/35 2024-09-11T03:13:04.065 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/35 2024-09-11T03:13:04.183 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/35 2024-09-11T03:13:04.212 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 16/35 2024-09-11T03:13:04.253 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/35 2024-09-11T03:13:04.293 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/35 2024-09-11T03:13:04.322 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 19/35 2024-09-11T03:13:04.355 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/35 2024-09-11T03:13:04.400 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/35 2024-09-11T03:13:04.731 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : libnbd-1.20.2-2.el9.x86_64 22/35 2024-09-11T03:13:04.777 INFO:teuthology.orchestra.run.smithi165.stdout: Upgrading : librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 23/35 2024-09-11T03:13:04.852 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 23/35 2024-09-11T03:13:04.882 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-rbd-2:19.3.0-4854.g8f219c47.el9.x86_64 24/35 2024-09-11T03:13:04.918 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 25/35 2024-09-11T03:13:05.410 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 26/35 2024-09-11T03:13:05.440 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : librgw2-2:19.3.0-4854.g8f219c47.el9.x86_64 27/35 2024-09-11T03:13:05.493 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: librgw2-2:19.3.0-4854.g8f219c47.el9.x86_64 27/35 2024-09-11T03:13:05.563 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-rgw-2:19.3.0-4854.g8f219c47.el9.x86_64 28/35 2024-09-11T03:13:05.591 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-ceph-common-2:19.3.0-4854.g8f219c47.el9.x8 29/35 2024-09-11T03:13:07.933 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 30/35 2024-09-11T03:13:07.971 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 30/35 2024-09-11T03:13:08.567 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 30/35 2024-09-11T03:13:08.599 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 31/35 2024-09-11T03:13:08.694 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 31/35 2024-09-11T03:13:08.695 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-11T03:13:08.695 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-11T03:13:08.695 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:08.726 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-selinux-2:19.3.0-4854.g8f219c47.el9.x86_64 32/35 2024-09-11T03:13:18.862 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-selinux-2:19.3.0-4854.g8f219c47.el9.x86_64 32/35 2024-09-11T03:13:18.862 INFO:teuthology.orchestra.run.smithi165.stdout:skipping the directory /sys 2024-09-11T03:13:18.862 INFO:teuthology.orchestra.run.smithi165.stdout:skipping the directory /proc 2024-09-11T03:13:18.862 INFO:teuthology.orchestra.run.smithi165.stdout:skipping the directory /mnt 2024-09-11T03:13:18.863 INFO:teuthology.orchestra.run.smithi165.stdout:skipping the directory /var/tmp 2024-09-11T03:13:18.863 INFO:teuthology.orchestra.run.smithi165.stdout:skipping the directory /home 2024-09-11T03:13:18.863 INFO:teuthology.orchestra.run.smithi165.stdout:skipping the directory /root 2024-09-11T03:13:18.863 INFO:teuthology.orchestra.run.smithi165.stdout:skipping the directory /tmp 2024-09-11T03:13:18.863 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:19.895 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-radosgw-2:19.3.0-4854.g8f219c47.el9.x86_64 33/35 2024-09-11T03:13:19.921 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-radosgw-2:19.3.0-4854.g8f219c47.el9.x86_64 33/35 2024-09-11T03:13:19.921 INFO:teuthology.orchestra.run.smithi165.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:13:19.921 INFO:teuthology.orchestra.run.smithi165.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-11T03:13:19.921 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-11T03:13:19.921 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-11T03:13:19.921 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:19.923 INFO:teuthology.orchestra.run.smithi165.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 34/35 2024-09-11T03:13:20.005 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 34/35 2024-09-11T03:13:20.005 INFO:teuthology.orchestra.run.smithi165.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 35/35 2024-09-11T03:13:21.138 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 35/35 2024-09-11T03:13:21.138 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 1/35 2024-09-11T03:13:21.138 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 2/35 2024-09-11T03:13:21.138 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-radosgw-2:19.3.0-4854.g8f219c47.el9.x86_64 3/35 2024-09-11T03:13:21.138 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-selinux-2:19.3.0-4854.g8f219c47.el9.x86_64 4/35 2024-09-11T03:13:21.138 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 5/35 2024-09-11T03:13:21.139 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : libradosstriper1-2:19.3.0-4854.g8f219c47.el9.x86_6 6/35 2024-09-11T03:13:21.139 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : librgw2-2:19.3.0-4854.g8f219c47.el9.x86_64 7/35 2024-09-11T03:13:21.139 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-ceph-argparse-2:19.3.0-4854.g8f219c47.el9. 8/35 2024-09-11T03:13:21.139 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-ceph-common-2:19.3.0-4854.g8f219c47.el9.x8 9/35 2024-09-11T03:13:21.139 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-cephfs-2:19.3.0-4854.g8f219c47.el9.x86_64 10/35 2024-09-11T03:13:21.139 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-rados-2:19.3.0-4854.g8f219c47.el9.x86_64 11/35 2024-09-11T03:13:21.139 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-rbd-2:19.3.0-4854.g8f219c47.el9.x86_64 12/35 2024-09-11T03:13:21.139 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-rgw-2:19.3.0-4854.g8f219c47.el9.x86_64 13/35 2024-09-11T03:13:21.139 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/35 2024-09-11T03:13:21.139 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : libnbd-1.20.2-2.el9.x86_64 15/35 2024-09-11T03:13:21.140 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 16/35 2024-09-11T03:13:21.140 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 17/35 2024-09-11T03:13:21.140 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 18/35 2024-09-11T03:13:21.140 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 19/35 2024-09-11T03:13:21.140 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 20/35 2024-09-11T03:13:21.140 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 21/35 2024-09-11T03:13:21.140 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 22/35 2024-09-11T03:13:21.140 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 23/35 2024-09-11T03:13:21.140 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 24/35 2024-09-11T03:13:21.140 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 25/35 2024-09-11T03:13:21.140 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 26/35 2024-09-11T03:13:21.140 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 27/35 2024-09-11T03:13:21.141 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 28/35 2024-09-11T03:13:21.141 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 29/35 2024-09-11T03:13:21.141 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : re2-1:20211101-20.el9.x86_64 30/35 2024-09-11T03:13:21.141 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 31/35 2024-09-11T03:13:21.142 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 32/35 2024-09-11T03:13:21.142 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 33/35 2024-09-11T03:13:21.142 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 34/35 2024-09-11T03:13:21.998 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 35/35 2024-09-11T03:13:21.999 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:21.999 INFO:teuthology.orchestra.run.smithi165.stdout:Upgraded: 2024-09-11T03:13:21.999 INFO:teuthology.orchestra.run.smithi165.stdout: librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:21.999 INFO:teuthology.orchestra.run.smithi165.stdout: librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:21.999 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:13:21.999 INFO:teuthology.orchestra.run.smithi165.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-11T03:13:21.999 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:21.999 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:21.999 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-radosgw-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:21.999 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-selinux-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:22.000 INFO:teuthology.orchestra.run.smithi165.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-09-11T03:13:22.000 INFO:teuthology.orchestra.run.smithi165.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-11T03:13:22.000 INFO:teuthology.orchestra.run.smithi165.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-11T03:13:22.000 INFO:teuthology.orchestra.run.smithi165.stdout: libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:22.000 INFO:teuthology.orchestra.run.smithi165.stdout: libnbd-1.20.2-2.el9.x86_64 2024-09-11T03:13:22.000 INFO:teuthology.orchestra.run.smithi165.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-11T03:13:22.000 INFO:teuthology.orchestra.run.smithi165.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-11T03:13:22.000 INFO:teuthology.orchestra.run.smithi165.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-11T03:13:22.000 INFO:teuthology.orchestra.run.smithi165.stdout: libradosstriper1-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:22.000 INFO:teuthology.orchestra.run.smithi165.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-11T03:13:22.000 INFO:teuthology.orchestra.run.smithi165.stdout: librgw2-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:22.000 INFO:teuthology.orchestra.run.smithi165.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-11T03:13:22.001 INFO:teuthology.orchestra.run.smithi165.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-11T03:13:22.001 INFO:teuthology.orchestra.run.smithi165.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-11T03:13:22.001 INFO:teuthology.orchestra.run.smithi165.stdout: python3-ceph-argparse-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:22.001 INFO:teuthology.orchestra.run.smithi165.stdout: python3-ceph-common-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:22.001 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cephfs-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:22.001 INFO:teuthology.orchestra.run.smithi165.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-11T03:13:22.001 INFO:teuthology.orchestra.run.smithi165.stdout: python3-rados-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:22.001 INFO:teuthology.orchestra.run.smithi165.stdout: python3-rbd-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:22.001 INFO:teuthology.orchestra.run.smithi165.stdout: python3-rgw-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:22.001 INFO:teuthology.orchestra.run.smithi165.stdout: qatlib-24.02.0-1.el9.x86_64 2024-09-11T03:13:22.001 INFO:teuthology.orchestra.run.smithi165.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-09-11T03:13:22.001 INFO:teuthology.orchestra.run.smithi165.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-09-11T03:13:22.001 INFO:teuthology.orchestra.run.smithi165.stdout: re2-1:20211101-20.el9.x86_64 2024-09-11T03:13:22.002 INFO:teuthology.orchestra.run.smithi165.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-11T03:13:22.002 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:22.002 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:13:22.339 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install ceph-test 2024-09-11T03:13:22.922 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:00:27 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:13:23.056 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:13:23.057 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:23.057 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repository Size 2024-09-11T03:13:23.057 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:23.057 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:13:23.057 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-test x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 50 M 2024-09-11T03:13:23.057 INFO:teuthology.orchestra.run.smithi165.stdout:Installing dependencies: 2024-09-11T03:13:23.058 INFO:teuthology.orchestra.run.smithi165.stdout: libcephsqlite x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 162 k 2024-09-11T03:13:23.058 INFO:teuthology.orchestra.run.smithi165.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-11T03:13:23.058 INFO:teuthology.orchestra.run.smithi165.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-11T03:13:23.058 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:23.058 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:13:23.058 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:23.058 INFO:teuthology.orchestra.run.smithi165.stdout:Install 4 Packages 2024-09-11T03:13:23.058 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:23.059 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 51 M 2024-09-11T03:13:23.059 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 217 M 2024-09-11T03:13:23.059 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:13:23.426 INFO:teuthology.orchestra.run.smithi165.stdout:(1/4): libcephsqlite-19.3.0-4854.g8f219c47.el9. 754 kB/s | 162 kB 00:00 2024-09-11T03:13:23.452 INFO:teuthology.orchestra.run.smithi165.stdout:(2/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.2 MB/s | 304 kB 00:00 2024-09-11T03:13:23.577 INFO:teuthology.orchestra.run.smithi165.stdout:(3/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 424 kB/s | 64 kB 00:00 2024-09-11T03:13:24.760 INFO:teuthology.orchestra.run.smithi165.stdout:(4/4): ceph-test-19.3.0-4854.g8f219c47.el9.x86_ 32 MB/s | 50 MB 00:01 2024-09-11T03:13:24.762 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:13:24.762 INFO:teuthology.orchestra.run.smithi165.stdout:Total 30 MB/s | 51 MB 00:01 2024-09-11T03:13:24.790 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:13:24.811 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:13:24.811 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:13:25.211 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:13:25.212 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:13:25.807 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:13:25.908 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-11T03:13:25.955 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-11T03:13:25.982 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : libcephsqlite-2:19.3.0-4854.g8f219c47.el9.x86_64 3/4 2024-09-11T03:13:30.745 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: libcephsqlite-2:19.3.0-4854.g8f219c47.el9.x86_64 3/4 2024-09-11T03:13:30.822 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-test-2:19.3.0-4854.g8f219c47.el9.x86_64 4/4 2024-09-11T03:13:33.341 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-test-2:19.3.0-4854.g8f219c47.el9.x86_64 4/4 2024-09-11T03:13:33.341 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-test-2:19.3.0-4854.g8f219c47.el9.x86_64 1/4 2024-09-11T03:13:33.341 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : libcephsqlite-2:19.3.0-4854.g8f219c47.el9.x86_64 2/4 2024-09-11T03:13:33.341 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-11T03:13:33.640 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-11T03:13:33.640 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:33.640 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:13:33.640 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-test-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:33.640 INFO:teuthology.orchestra.run.smithi165.stdout: libcephsqlite-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:33.640 INFO:teuthology.orchestra.run.smithi165.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-11T03:13:33.640 INFO:teuthology.orchestra.run.smithi165.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-11T03:13:33.640 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:33.640 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:13:33.898 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install ceph 2024-09-11T03:13:34.493 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:00:39 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:13:34.635 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:13:34.637 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:34.638 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repository Size 2024-09-11T03:13:34.638 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:34.638 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:13:34.638 INFO:teuthology.orchestra.run.smithi165.stdout: ceph x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 6.6 k 2024-09-11T03:13:34.638 INFO:teuthology.orchestra.run.smithi165.stdout:Installing dependencies: 2024-09-11T03:13:34.638 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mds x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 2.4 M 2024-09-11T03:13:34.638 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 1.5 M 2024-09-11T03:13:34.638 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-modules-core noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 291 k 2024-09-11T03:13:34.638 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mon x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 4.8 M 2024-09-11T03:13:34.638 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-osd x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 17 M 2024-09-11T03:13:34.639 INFO:teuthology.orchestra.run.smithi165.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-09-11T03:13:34.639 INFO:teuthology.orchestra.run.smithi165.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-09-11T03:13:34.639 INFO:teuthology.orchestra.run.smithi165.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2024-09-11T03:13:34.639 INFO:teuthology.orchestra.run.smithi165.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-11T03:13:34.639 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-11T03:13:34.639 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-11T03:13:34.639 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-11T03:13:34.639 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-11T03:13:34.639 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-11T03:13:34.639 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-11T03:13:34.639 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jaraco-collections 2024-09-11T03:13:34.639 INFO:teuthology.orchestra.run.smithi165.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-11T03:13:34.640 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-11T03:13:34.640 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-11T03:13:34.640 INFO:teuthology.orchestra.run.smithi165.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-11T03:13:34.640 INFO:teuthology.orchestra.run.smithi165.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-11T03:13:34.640 INFO:teuthology.orchestra.run.smithi165.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-11T03:13:34.640 INFO:teuthology.orchestra.run.smithi165.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-11T03:13:34.640 INFO:teuthology.orchestra.run.smithi165.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-11T03:13:34.640 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-11T03:13:34.640 INFO:teuthology.orchestra.run.smithi165.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-11T03:13:34.640 INFO:teuthology.orchestra.run.smithi165.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-11T03:13:34.641 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-11T03:13:34.641 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-11T03:13:34.641 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-11T03:13:34.641 INFO:teuthology.orchestra.run.smithi165.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-11T03:13:34.641 INFO:teuthology.orchestra.run.smithi165.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-11T03:13:34.641 INFO:teuthology.orchestra.run.smithi165.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-11T03:13:34.641 INFO:teuthology.orchestra.run.smithi165.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-11T03:13:34.641 INFO:teuthology.orchestra.run.smithi165.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-11T03:13:34.641 INFO:teuthology.orchestra.run.smithi165.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-11T03:13:34.641 INFO:teuthology.orchestra.run.smithi165.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-11T03:13:34.642 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:34.642 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:13:34.642 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:34.642 INFO:teuthology.orchestra.run.smithi165.stdout:Install 37 Packages 2024-09-11T03:13:34.642 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:34.643 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 31 M 2024-09-11T03:13:34.643 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 109 M 2024-09-11T03:13:34.643 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:13:35.465 INFO:teuthology.orchestra.run.smithi165.stdout:(1/37): ceph-19.3.0-4854.g8f219c47.el9.x86_64.r 46 kB/s | 6.6 kB 00:00 2024-09-11T03:13:35.631 INFO:teuthology.orchestra.run.smithi165.stdout:(2/37): ceph-mgr-19.3.0-4854.g8f219c47.el9.x86_ 4.9 MB/s | 1.5 MB 00:00 2024-09-11T03:13:35.682 INFO:teuthology.orchestra.run.smithi165.stdout:(3/37): ceph-mds-19.3.0-4854.g8f219c47.el9.x86_ 6.6 MB/s | 2.4 MB 00:00 2024-09-11T03:13:35.749 INFO:teuthology.orchestra.run.smithi165.stdout:(4/37): ceph-mgr-modules-core-19.3.0-4854.g8f21 4.3 MB/s | 291 kB 00:00 2024-09-11T03:13:36.166 INFO:teuthology.orchestra.run.smithi165.stdout:(5/37): ceph-osd-19.3.0-4854.g8f219c47.el9.x86_ 32 MB/s | 17 MB 00:00 2024-09-11T03:13:36.266 INFO:teuthology.orchestra.run.smithi165.stdout:(6/37): ceph-mon-19.3.0-4854.g8f219c47.el9.x86_ 6.0 MB/s | 4.8 MB 00:00 2024-09-11T03:13:36.291 INFO:teuthology.orchestra.run.smithi165.stdout:(7/37): python3-cffi-1.14.5-5.el9.x86_64.rpm 467 kB/s | 253 kB 00:00 2024-09-11T03:13:36.675 INFO:teuthology.orchestra.run.smithi165.stdout:(8/37): python3-ply-3.11-14.el9.noarch.rpm 261 kB/s | 106 kB 00:00 2024-09-11T03:13:36.708 INFO:teuthology.orchestra.run.smithi165.stdout:(9/37): python3-pycparser-2.20-6.el9.noarch.rpm 324 kB/s | 135 kB 00:00 2024-09-11T03:13:36.934 INFO:teuthology.orchestra.run.smithi165.stdout:(10/37): python3-cryptography-36.0.1-4.el9.x86_ 1.6 MB/s | 1.2 MB 00:00 2024-09-11T03:13:37.084 INFO:teuthology.orchestra.run.smithi165.stdout:(11/37): python3-requests-2.25.1-8.el9.noarch.r 305 kB/s | 125 kB 00:00 2024-09-11T03:13:37.134 INFO:teuthology.orchestra.run.smithi165.stdout:(12/37): lua-5.4.4-4.el9.x86_64.rpm 941 kB/s | 188 kB 00:00 2024-09-11T03:13:37.185 INFO:teuthology.orchestra.run.smithi165.stdout:(13/37): python3-markupsafe-1.1.1-12.el9.x86_64 696 kB/s | 35 kB 00:00 2024-09-11T03:13:37.210 INFO:teuthology.orchestra.run.smithi165.stdout:(14/37): python3-urllib3-1.26.5-6.el9.noarch.rp 428 kB/s | 215 kB 00:00 2024-09-11T03:13:37.235 INFO:teuthology.orchestra.run.smithi165.stdout:(15/37): python3-packaging-20.9-5.el9.noarch.rp 1.5 MB/s | 77 kB 00:00 2024-09-11T03:13:37.285 INFO:teuthology.orchestra.run.smithi165.stdout:(16/37): python3-toml-0.10.2-6.el9.noarch.rpm 834 kB/s | 42 kB 00:00 2024-09-11T03:13:37.311 INFO:teuthology.orchestra.run.smithi165.stdout:(17/37): python3-mako-1.1.4-6.el9.noarch.rpm 760 kB/s | 172 kB 00:00 2024-09-11T03:13:37.344 INFO:teuthology.orchestra.run.smithi165.stdout:(18/37): python3-pytz-2021.1-5.el9.noarch.rpm 380 kB/s | 51 kB 00:00 2024-09-11T03:13:37.378 INFO:teuthology.orchestra.run.smithi165.stdout:(19/37): luarocks-3.9.2-5.el9.noarch.rpm 2.2 MB/s | 151 kB 00:00 2024-09-11T03:13:37.411 INFO:teuthology.orchestra.run.smithi165.stdout:(20/37): python3-cheroot-8.6.0-4.el9.noarch.rpm 5.3 MB/s | 172 kB 00:00 2024-09-11T03:13:37.437 INFO:teuthology.orchestra.run.smithi165.stdout:(21/37): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 480 kB/s | 43 kB 00:00 2024-09-11T03:13:37.462 INFO:teuthology.orchestra.run.smithi165.stdout:(22/37): python3-jaraco-8.2.1-3.el9.noarch.rpm 425 kB/s | 11 kB 00:00 2024-09-11T03:13:37.487 INFO:teuthology.orchestra.run.smithi165.stdout:(23/37): python3-jaraco-classes-3.2.1-5.el9.noa 720 kB/s | 18 kB 00:00 2024-09-11T03:13:37.513 INFO:teuthology.orchestra.run.smithi165.stdout:(24/37): python3-cherrypy-18.6.1-2.el9.noarch.r 3.5 MB/s | 358 kB 00:00 2024-09-11T03:13:37.538 INFO:teuthology.orchestra.run.smithi165.stdout:(25/37): python3-jaraco-collections-3.0.0-8.el9 462 kB/s | 23 kB 00:00 2024-09-11T03:13:37.571 INFO:teuthology.orchestra.run.smithi165.stdout:(26/37): python3-jaraco-functools-3.5.0-2.el9.n 755 kB/s | 19 kB 00:00 2024-09-11T03:13:37.597 INFO:teuthology.orchestra.run.smithi165.stdout:(27/37): python3-jaraco-text-3.2.0-6.el9.noarch 385 kB/s | 20 kB 00:00 2024-09-11T03:13:37.622 INFO:teuthology.orchestra.run.smithi165.stdout:(28/37): python3-logutils-0.3.5-21.el9.noarch.r 922 kB/s | 46 kB 00:00 2024-09-11T03:13:37.648 INFO:teuthology.orchestra.run.smithi165.stdout:(29/37): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2024-09-11T03:13:37.673 INFO:teuthology.orchestra.run.smithi165.stdout:(30/37): python3-portend-3.1.0-2.el9.noarch.rpm 663 kB/s | 16 kB 00:00 2024-09-11T03:13:37.698 INFO:teuthology.orchestra.run.smithi165.stdout:(31/37): python3-pecan-1.4.2-3.el9.noarch.rpm 3.6 MB/s | 272 kB 00:00 2024-09-11T03:13:37.723 INFO:teuthology.orchestra.run.smithi165.stdout:(32/37): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.8 MB/s | 90 kB 00:00 2024-09-11T03:13:37.748 INFO:teuthology.orchestra.run.smithi165.stdout:(33/37): python3-tempora-5.0.0-2.el9.noarch.rpm 714 kB/s | 36 kB 00:00 2024-09-11T03:13:37.773 INFO:teuthology.orchestra.run.smithi165.stdout:(34/37): python3-webob-1.8.8-2.el9.noarch.rpm 9.1 MB/s | 230 kB 00:00 2024-09-11T03:13:37.800 INFO:teuthology.orchestra.run.smithi165.stdout:(35/37): python3-zc-lockfile-2.0-10.el9.noarch. 800 kB/s | 20 kB 00:00 2024-09-11T03:13:37.824 INFO:teuthology.orchestra.run.smithi165.stdout:(36/37): python3-werkzeug-2.0.3-3.el9.1.noarch. 5.6 MB/s | 427 kB 00:00 2024-09-11T03:13:37.866 INFO:teuthology.orchestra.run.smithi165.stdout:(37/37): lua-devel-5.4.4-4.el9.x86_64.rpm 38 kB/s | 22 kB 00:00 2024-09-11T03:13:37.871 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:13:37.871 INFO:teuthology.orchestra.run.smithi165.stdout:Total 9.5 MB/s | 31 MB 00:03 2024-09-11T03:13:38.023 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:13:38.065 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:13:38.065 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:13:38.519 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:13:38.519 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:13:39.820 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:13:39.877 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/37 2024-09-11T03:13:39.910 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/37 2024-09-11T03:13:39.938 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/37 2024-09-11T03:13:40.008 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/37 2024-09-11T03:13:40.056 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : luarocks-3.9.2-5.el9.noarch 5/37 2024-09-11T03:13:40.086 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/37 2024-09-11T03:13:40.187 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/37 2024-09-11T03:13:40.274 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/37 2024-09-11T03:13:40.314 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 9/37 2024-09-11T03:13:40.349 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/37 2024-09-11T03:13:40.379 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/37 2024-09-11T03:13:40.405 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/37 2024-09-11T03:13:40.439 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/37 2024-09-11T03:13:40.479 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/37 2024-09-11T03:13:40.514 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/37 2024-09-11T03:13:40.549 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/37 2024-09-11T03:13:40.608 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/37 2024-09-11T03:13:40.646 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/37 2024-09-11T03:13:40.720 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/37 2024-09-11T03:13:40.858 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 20/37 2024-09-11T03:13:40.937 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 21/37 2024-09-11T03:13:40.990 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 22/37 2024-09-11T03:13:41.029 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 23/37 2024-09-11T03:13:41.078 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-ply-3.11-14.el9.noarch 24/37 2024-09-11T03:13:41.134 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 25/37 2024-09-11T03:13:41.319 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 26/37 2024-09-11T03:13:41.367 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 27/37 2024-09-11T03:13:41.437 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 28/37 2024-09-11T03:13:41.526 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 29/37 2024-09-11T03:13:41.569 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 30/37 2024-09-11T03:13:41.695 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 31/37 2024-09-11T03:13:41.856 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-mgr-modules-core-2:19.3.0-4854.g8f219c47.el9. 32/37 2024-09-11T03:13:41.886 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 33/37 2024-09-11T03:13:41.912 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 33/37 2024-09-11T03:13:41.912 INFO:teuthology.orchestra.run.smithi165.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:13:41.913 INFO:teuthology.orchestra.run.smithi165.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-11T03:13:41.913 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-11T03:13:41.913 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-11T03:13:41.913 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:43.378 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-osd-2:19.3.0-4854.g8f219c47.el9.x86_64 34/37 2024-09-11T03:13:43.405 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-osd-2:19.3.0-4854.g8f219c47.el9.x86_64 34/37 2024-09-11T03:13:43.405 INFO:teuthology.orchestra.run.smithi165.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:13:43.405 INFO:teuthology.orchestra.run.smithi165.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-11T03:13:43.405 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-11T03:13:43.405 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-11T03:13:43.406 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:43.854 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-mon-2:19.3.0-4854.g8f219c47.el9.x86_64 35/37 2024-09-11T03:13:43.878 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-mon-2:19.3.0-4854.g8f219c47.el9.x86_64 35/37 2024-09-11T03:13:43.878 INFO:teuthology.orchestra.run.smithi165.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:13:43.878 INFO:teuthology.orchestra.run.smithi165.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-11T03:13:43.878 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-11T03:13:43.879 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-11T03:13:43.879 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:44.105 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-mds-2:19.3.0-4854.g8f219c47.el9.x86_64 36/37 2024-09-11T03:13:44.129 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-mds-2:19.3.0-4854.g8f219c47.el9.x86_64 36/37 2024-09-11T03:13:44.129 INFO:teuthology.orchestra.run.smithi165.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:13:44.129 INFO:teuthology.orchestra.run.smithi165.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-11T03:13:44.129 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-11T03:13:44.129 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-11T03:13:44.130 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:44.193 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-2:19.3.0-4854.g8f219c47.el9.x86_64 37/37 2024-09-11T03:13:45.750 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-2:19.3.0-4854.g8f219c47.el9.x86_64 37/37 2024-09-11T03:13:45.750 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-2:19.3.0-4854.g8f219c47.el9.x86_64 1/37 2024-09-11T03:13:45.751 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-mds-2:19.3.0-4854.g8f219c47.el9.x86_64 2/37 2024-09-11T03:13:45.751 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 3/37 2024-09-11T03:13:45.751 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-mon-2:19.3.0-4854.g8f219c47.el9.x86_64 4/37 2024-09-11T03:13:45.751 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-osd-2:19.3.0-4854.g8f219c47.el9.x86_64 5/37 2024-09-11T03:13:45.751 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-mgr-modules-core-2:19.3.0-4854.g8f219c47.el9. 6/37 2024-09-11T03:13:45.751 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/37 2024-09-11T03:13:45.751 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/37 2024-09-11T03:13:45.751 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/37 2024-09-11T03:13:45.751 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/37 2024-09-11T03:13:45.752 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/37 2024-09-11T03:13:45.752 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/37 2024-09-11T03:13:45.752 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/37 2024-09-11T03:13:45.752 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/37 2024-09-11T03:13:45.752 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/37 2024-09-11T03:13:45.752 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 16/37 2024-09-11T03:13:45.752 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 17/37 2024-09-11T03:13:45.752 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 18/37 2024-09-11T03:13:45.752 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 19/37 2024-09-11T03:13:45.752 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 20/37 2024-09-11T03:13:45.752 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 21/37 2024-09-11T03:13:45.752 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 22/37 2024-09-11T03:13:45.752 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 23/37 2024-09-11T03:13:45.753 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 24/37 2024-09-11T03:13:45.753 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 25/37 2024-09-11T03:13:45.753 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 26/37 2024-09-11T03:13:45.753 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 27/37 2024-09-11T03:13:45.753 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 28/37 2024-09-11T03:13:45.753 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 29/37 2024-09-11T03:13:45.753 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 30/37 2024-09-11T03:13:45.753 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 31/37 2024-09-11T03:13:45.753 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 32/37 2024-09-11T03:13:45.753 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 33/37 2024-09-11T03:13:45.753 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 34/37 2024-09-11T03:13:45.753 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 35/37 2024-09-11T03:13:45.753 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 36/37 2024-09-11T03:13:46.708 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 37/37 2024-09-11T03:13:46.708 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:46.708 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:13:46.708 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:46.708 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mds-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:46.708 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:46.708 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-modules-core-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:13:46.709 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mon-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:46.709 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-osd-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:46.709 INFO:teuthology.orchestra.run.smithi165.stdout: lua-5.4.4-4.el9.x86_64 2024-09-11T03:13:46.709 INFO:teuthology.orchestra.run.smithi165.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-09-11T03:13:46.709 INFO:teuthology.orchestra.run.smithi165.stdout: luarocks-3.9.2-5.el9.noarch 2024-09-11T03:13:46.709 INFO:teuthology.orchestra.run.smithi165.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-11T03:13:46.709 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-11T03:13:46.709 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-11T03:13:46.709 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-11T03:13:46.709 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-11T03:13:46.709 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-11T03:13:46.709 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-11T03:13:46.709 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-11T03:13:46.710 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-11T03:13:46.710 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-11T03:13:46.710 INFO:teuthology.orchestra.run.smithi165.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-11T03:13:46.710 INFO:teuthology.orchestra.run.smithi165.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-11T03:13:46.710 INFO:teuthology.orchestra.run.smithi165.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-11T03:13:46.710 INFO:teuthology.orchestra.run.smithi165.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-11T03:13:46.710 INFO:teuthology.orchestra.run.smithi165.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-11T03:13:46.710 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-11T03:13:46.710 INFO:teuthology.orchestra.run.smithi165.stdout: python3-ply-3.11-14.el9.noarch 2024-09-11T03:13:46.710 INFO:teuthology.orchestra.run.smithi165.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-11T03:13:46.710 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-11T03:13:46.710 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-11T03:13:46.710 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-11T03:13:46.711 INFO:teuthology.orchestra.run.smithi165.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-11T03:13:46.711 INFO:teuthology.orchestra.run.smithi165.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-11T03:13:46.711 INFO:teuthology.orchestra.run.smithi165.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-11T03:13:46.711 INFO:teuthology.orchestra.run.smithi165.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-11T03:13:46.711 INFO:teuthology.orchestra.run.smithi165.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-11T03:13:46.711 INFO:teuthology.orchestra.run.smithi165.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-11T03:13:46.711 INFO:teuthology.orchestra.run.smithi165.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-11T03:13:46.711 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:46.711 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:13:47.137 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install ceph-base 2024-09-11T03:13:47.722 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:00:52 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:13:47.813 INFO:teuthology.orchestra.run.smithi165.stdout:Package ceph-base-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:13:47.854 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:13:47.855 INFO:teuthology.orchestra.run.smithi165.stdout:Nothing to do. 2024-09-11T03:13:47.855 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:13:47.938 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install cephadm 2024-09-11T03:13:48.500 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:00:53 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:13:48.631 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:13:48.632 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:48.632 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repository Size 2024-09-11T03:13:48.632 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:48.632 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:13:48.632 INFO:teuthology.orchestra.run.smithi165.stdout: cephadm noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 783 k 2024-09-11T03:13:48.632 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:48.632 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:13:48.632 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:48.633 INFO:teuthology.orchestra.run.smithi165.stdout:Install 1 Package 2024-09-11T03:13:48.633 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:48.633 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 783 k 2024-09-11T03:13:48.633 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 790 k 2024-09-11T03:13:48.633 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:13:48.914 INFO:teuthology.orchestra.run.smithi165.stdout:cephadm-19.3.0-4854.g8f219c47.el9.noarch.rpm 2.7 MB/s | 783 kB 00:00 2024-09-11T03:13:48.914 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:13:48.915 INFO:teuthology.orchestra.run.smithi165.stdout:Total 2.7 MB/s | 783 kB 00:00 2024-09-11T03:13:48.915 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:13:48.920 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:13:48.920 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:13:48.926 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:13:48.926 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:13:49.001 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:13:49.425 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:13:49.518 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:13:49.892 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:13:50.130 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:13:50.130 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:50.130 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:13:50.130 INFO:teuthology.orchestra.run.smithi165.stdout: cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:13:50.130 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:50.130 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:13:50.344 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install ceph-immutable-object-cache 2024-09-11T03:13:50.930 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:00:55 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:13:51.067 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:13:51.067 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:51.068 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repo Size 2024-09-11T03:13:51.068 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:51.068 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:13:51.068 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-immutable-object-cache x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 145 k 2024-09-11T03:13:51.068 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:51.068 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:13:51.068 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:51.068 INFO:teuthology.orchestra.run.smithi165.stdout:Install 1 Package 2024-09-11T03:13:51.068 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:51.069 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 145 k 2024-09-11T03:13:51.069 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 432 k 2024-09-11T03:13:51.069 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:13:51.279 INFO:teuthology.orchestra.run.smithi165.stdout:ceph-immutable-object-cache-19.3.0-4854.g8f219c 691 kB/s | 145 kB 00:00 2024-09-11T03:13:51.279 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:13:51.279 INFO:teuthology.orchestra.run.smithi165.stdout:Total 686 kB/s | 145 kB 00:00 2024-09-11T03:13:51.280 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:13:51.287 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:13:51.287 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:13:51.344 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:13:51.345 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:13:51.488 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:13:51.546 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-immutable-object-cache-2:19.3.0-4854.g8f219c47. 1/1 2024-09-11T03:13:51.571 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.3.0-4854.g8f219c47. 1/1 2024-09-11T03:13:51.572 INFO:teuthology.orchestra.run.smithi165.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:13:51.572 INFO:teuthology.orchestra.run.smithi165.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-11T03:13:51.572 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:52.505 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-immutable-object-cache-2:19.3.0-4854.g8f219c47. 1/1 2024-09-11T03:13:52.505 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:52.505 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:13:52.505 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-immutable-object-cache-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:13:52.505 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:52.505 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:13:52.725 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install ceph-mgr 2024-09-11T03:13:53.312 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:00:58 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:13:53.408 INFO:teuthology.orchestra.run.smithi165.stdout:Package ceph-mgr-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:13:53.450 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:13:53.451 INFO:teuthology.orchestra.run.smithi165.stdout:Nothing to do. 2024-09-11T03:13:53.451 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:13:53.526 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install ceph-mgr-dashboard 2024-09-11T03:13:54.086 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:00:59 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:13:54.220 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:13:54.221 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:54.221 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repository Size 2024-09-11T03:13:54.221 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:54.222 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:13:54.222 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-dashboard noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 14 M 2024-09-11T03:13:54.222 INFO:teuthology.orchestra.run.smithi165.stdout:Installing dependencies: 2024-09-11T03:13:54.222 INFO:teuthology.orchestra.run.smithi165.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-09-11T03:13:54.222 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-grafana-dashboards noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 34 k 2024-09-11T03:13:54.222 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-prometheus-alerts noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 16 k 2024-09-11T03:13:54.222 INFO:teuthology.orchestra.run.smithi165.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-09-11T03:13:54.222 INFO:teuthology.orchestra.run.smithi165.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-09-11T03:13:54.222 INFO:teuthology.orchestra.run.smithi165.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-09-11T03:13:54.222 INFO:teuthology.orchestra.run.smithi165.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-09-11T03:13:54.222 INFO:teuthology.orchestra.run.smithi165.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-09-11T03:13:54.222 INFO:teuthology.orchestra.run.smithi165.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-09-11T03:13:54.223 INFO:teuthology.orchestra.run.smithi165.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-11T03:13:54.223 INFO:teuthology.orchestra.run.smithi165.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-11T03:13:54.223 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:54.223 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:13:54.223 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:13:54.223 INFO:teuthology.orchestra.run.smithi165.stdout:Install 12 Packages 2024-09-11T03:13:54.223 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:13:54.224 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 19 M 2024-09-11T03:13:54.224 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 159 M 2024-09-11T03:13:54.224 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:13:54.641 INFO:teuthology.orchestra.run.smithi165.stdout:(1/12): ceph-prometheus-alerts-19.3.0-4854.g8f2 107 kB/s | 16 kB 00:00 2024-09-11T03:13:54.666 INFO:teuthology.orchestra.run.smithi165.stdout:(2/12): ceph-grafana-dashboards-19.3.0-4854.g8f 192 kB/s | 34 kB 00:00 2024-09-11T03:13:55.125 INFO:teuthology.orchestra.run.smithi165.stdout:(3/12): ceph-mgr-dashboard-19.3.0-4854.g8f219c4 22 MB/s | 14 MB 00:00 2024-09-11T03:13:55.308 INFO:teuthology.orchestra.run.smithi165.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 419 kB/s | 269 kB 00:00 2024-09-11T03:13:55.359 INFO:teuthology.orchestra.run.smithi165.stdout:(5/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 11 MB/s | 548 kB 00:00 2024-09-11T03:13:55.384 INFO:teuthology.orchestra.run.smithi165.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 771 kB/s | 19 kB 00:00 2024-09-11T03:13:55.460 INFO:teuthology.orchestra.run.smithi165.stdout:(7/12): python3-grpcio-1.46.7-10.el9.x86_64.rpm 27 MB/s | 2.0 MB 00:00 2024-09-11T03:13:55.493 INFO:teuthology.orchestra.run.smithi165.stdout:(8/12): protobuf-compiler-3.14.0-13.el9.x86_64. 2.3 MB/s | 863 kB 00:00 2024-09-11T03:13:55.527 INFO:teuthology.orchestra.run.smithi165.stdout:(9/12): protobuf-3.14.0-13.el9.x86_64.rpm 1.1 MB/s | 1.0 MB 00:00 2024-09-11T03:13:55.552 INFO:teuthology.orchestra.run.smithi165.stdout:(10/12): python3-grpcio-tools-1.46.7-10.el9.x86 1.5 MB/s | 144 kB 00:00 2024-09-11T03:13:55.586 INFO:teuthology.orchestra.run.smithi165.stdout:(11/12): python3-repoze-lru-0.7-16.el9.noarch.r 333 kB/s | 31 kB 00:00 2024-09-11T03:13:55.611 INFO:teuthology.orchestra.run.smithi165.stdout:(12/12): python3-routes-2.5.1-5.el9.noarch.rpm 2.4 MB/s | 188 kB 00:00 2024-09-11T03:13:55.614 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:13:55.614 INFO:teuthology.orchestra.run.smithi165.stdout:Total 14 MB/s | 19 MB 00:01 2024-09-11T03:13:55.662 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:13:55.679 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:13:55.680 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:13:55.939 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:13:55.939 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:13:56.542 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:13:56.629 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-09-11T03:13:56.664 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-09-11T03:13:56.711 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-09-11T03:13:56.741 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-09-11T03:13:56.833 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-09-11T03:13:56.969 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-09-11T03:13:57.062 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-09-11T03:13:57.113 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-09-11T03:13:57.141 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-09-11T03:13:57.174 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-prometheus-alerts-2:19.3.0-4854.g8f219c47.el9 10/12 2024-09-11T03:14:00.419 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-grafana-dashboards-2:19.3.0-4854.g8f219c47.el 11/12 2024-09-11T03:14:00.479 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-mgr-dashboard-2:19.3.0-4854.g8f219c47.el9.noa 12/12 2024-09-11T03:14:02.407 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.3.0-4854.g8f219c47.el9.noa 12/12 2024-09-11T03:14:02.407 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-grafana-dashboards-2:19.3.0-4854.g8f219c47.el 1/12 2024-09-11T03:14:02.407 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-mgr-dashboard-2:19.3.0-4854.g8f219c47.el9.noa 2/12 2024-09-11T03:14:02.407 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-prometheus-alerts-2:19.3.0-4854.g8f219c47.el9 3/12 2024-09-11T03:14:02.407 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-09-11T03:14:02.407 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-09-11T03:14:02.407 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-09-11T03:14:02.407 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-09-11T03:14:02.408 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-09-11T03:14:02.408 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-09-11T03:14:02.408 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-09-11T03:14:02.408 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-09-11T03:14:02.720 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-09-11T03:14:02.720 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:02.720 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:14:02.720 INFO:teuthology.orchestra.run.smithi165.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-09-11T03:14:02.720 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-grafana-dashboards-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:14:02.720 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-dashboard-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:14:02.721 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-prometheus-alerts-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:14:02.721 INFO:teuthology.orchestra.run.smithi165.stdout: grpc-data-1.46.7-10.el9.noarch 2024-09-11T03:14:02.721 INFO:teuthology.orchestra.run.smithi165.stdout: protobuf-3.14.0-13.el9.x86_64 2024-09-11T03:14:02.721 INFO:teuthology.orchestra.run.smithi165.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-09-11T03:14:02.721 INFO:teuthology.orchestra.run.smithi165.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-09-11T03:14:02.721 INFO:teuthology.orchestra.run.smithi165.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-09-11T03:14:02.721 INFO:teuthology.orchestra.run.smithi165.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-09-11T03:14:02.721 INFO:teuthology.orchestra.run.smithi165.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-11T03:14:02.721 INFO:teuthology.orchestra.run.smithi165.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-11T03:14:02.721 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:02.721 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:02.989 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-11T03:14:03.561 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:08 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:03.695 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:03.696 INFO:teuthology.orchestra.run.smithi165.stdout:======================================================================================= 2024-09-11T03:14:03.696 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repository Size 2024-09-11T03:14:03.696 INFO:teuthology.orchestra.run.smithi165.stdout:======================================================================================= 2024-09-11T03:14:03.696 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:14:03.696 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-diskprediction-local noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 7.4 M 2024-09-11T03:14:03.696 INFO:teuthology.orchestra.run.smithi165.stdout:Installing dependencies: 2024-09-11T03:14:03.696 INFO:teuthology.orchestra.run.smithi165.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-11T03:14:03.696 INFO:teuthology.orchestra.run.smithi165.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-11T03:14:03.696 INFO:teuthology.orchestra.run.smithi165.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-11T03:14:03.696 INFO:teuthology.orchestra.run.smithi165.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-11T03:14:03.697 INFO:teuthology.orchestra.run.smithi165.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-11T03:14:03.697 INFO:teuthology.orchestra.run.smithi165.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-11T03:14:03.697 INFO:teuthology.orchestra.run.smithi165.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-11T03:14:03.697 INFO:teuthology.orchestra.run.smithi165.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-11T03:14:03.697 INFO:teuthology.orchestra.run.smithi165.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-11T03:14:03.697 INFO:teuthology.orchestra.run.smithi165.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-11T03:14:03.697 INFO:teuthology.orchestra.run.smithi165.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-11T03:14:03.697 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:03.697 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:14:03.697 INFO:teuthology.orchestra.run.smithi165.stdout:======================================================================================= 2024-09-11T03:14:03.697 INFO:teuthology.orchestra.run.smithi165.stdout:Install 12 Packages 2024-09-11T03:14:03.697 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:03.698 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 38 M 2024-09-11T03:14:03.698 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 212 M 2024-09-11T03:14:03.698 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:14:04.111 INFO:teuthology.orchestra.run.smithi165.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.1 MB/s | 191 kB 00:00 2024-09-11T03:14:04.144 INFO:teuthology.orchestra.run.smithi165.stdout:(2/12): libgfortran-11.5.0-2.el9.x86_64.rpm 3.8 MB/s | 801 kB 00:00 2024-09-11T03:14:04.236 INFO:teuthology.orchestra.run.smithi165.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 261 kB/s | 33 kB 00:00 2024-09-11T03:14:04.312 INFO:teuthology.orchestra.run.smithi165.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 243 kB/s | 18 kB 00:00 2024-09-11T03:14:04.412 INFO:teuthology.orchestra.run.smithi165.stdout:(5/12): ceph-mgr-diskprediction-local-19.3.0-48 16 MB/s | 7.4 MB 00:00 2024-09-11T03:14:04.437 INFO:teuthology.orchestra.run.smithi165.stdout:(6/12): openblas-0.3.26-2.el9.x86_64.rpm 307 kB/s | 38 kB 00:00 2024-09-11T03:14:04.513 INFO:teuthology.orchestra.run.smithi165.stdout:(7/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 8.1 MB/s | 3.0 MB 00:00 2024-09-11T03:14:04.538 INFO:teuthology.orchestra.run.smithi165.stdout:(8/12): python3-devel-3.9.19-8.el9.x86_64.rpm 2.4 MB/s | 245 kB 00:00 2024-09-11T03:14:04.622 INFO:teuthology.orchestra.run.smithi165.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.9 MB/s | 250 kB 00:00 2024-09-11T03:14:04.747 INFO:teuthology.orchestra.run.smithi165.stdout:(10/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 15 MB/s | 4.9 MB 00:00 2024-09-11T03:14:04.831 INFO:teuthology.orchestra.run.smithi165.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 16 MB/s | 5.1 MB 00:00 2024-09-11T03:14:05.089 INFO:teuthology.orchestra.run.smithi165.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 35 MB/s | 16 MB 00:00 2024-09-11T03:14:05.092 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:14:05.092 INFO:teuthology.orchestra.run.smithi165.stdout:Total 27 MB/s | 38 MB 00:01 2024-09-11T03:14:05.447 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:14:05.474 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:14:05.474 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:14:05.912 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:14:05.913 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:14:06.678 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:14:06.740 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-11T03:14:06.779 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-11T03:14:06.878 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-11T03:14:06.922 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-11T03:14:07.107 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-11T03:14:07.137 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-11T03:14:07.214 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-11T03:14:07.869 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-11T03:14:07.985 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-11T03:14:09.235 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-11T03:14:10.284 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-11T03:14:10.313 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-mgr-diskprediction-local-2:19.3.0-4854.g8f219 12/12 2024-09-11T03:14:12.800 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.3.0-4854.g8f219 12/12 2024-09-11T03:14:12.800 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.3.0-4854.g8f219 1/12 2024-09-11T03:14:12.800 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-11T03:14:12.800 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-11T03:14:12.800 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-11T03:14:12.800 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-11T03:14:12.801 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-11T03:14:12.801 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-11T03:14:12.801 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-11T03:14:12.801 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-11T03:14:12.801 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-11T03:14:12.801 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-11T03:14:13.224 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-11T03:14:13.224 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:13.224 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:14:13.224 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-diskprediction-local-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:14:13.224 INFO:teuthology.orchestra.run.smithi165.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-11T03:14:13.224 INFO:teuthology.orchestra.run.smithi165.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-11T03:14:13.225 INFO:teuthology.orchestra.run.smithi165.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-11T03:14:13.225 INFO:teuthology.orchestra.run.smithi165.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-11T03:14:13.225 INFO:teuthology.orchestra.run.smithi165.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-11T03:14:13.225 INFO:teuthology.orchestra.run.smithi165.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-11T03:14:13.225 INFO:teuthology.orchestra.run.smithi165.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-11T03:14:13.225 INFO:teuthology.orchestra.run.smithi165.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-11T03:14:13.225 INFO:teuthology.orchestra.run.smithi165.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-11T03:14:13.225 INFO:teuthology.orchestra.run.smithi165.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-11T03:14:13.225 INFO:teuthology.orchestra.run.smithi165.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-11T03:14:13.225 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:13.225 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:13.611 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install ceph-mgr-rook 2024-09-11T03:14:14.195 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:19 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:14.328 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:14.329 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:14.329 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repository Size 2024-09-11T03:14:14.329 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:14.329 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:14:14.329 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-rook noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 49 k 2024-09-11T03:14:14.329 INFO:teuthology.orchestra.run.smithi165.stdout:Installing dependencies: 2024-09-11T03:14:14.329 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-11T03:14:14.329 INFO:teuthology.orchestra.run.smithi165.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-11T03:14:14.329 INFO:teuthology.orchestra.run.smithi165.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-11T03:14:14.330 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-11T03:14:14.330 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-11T03:14:14.330 INFO:teuthology.orchestra.run.smithi165.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-11T03:14:14.330 INFO:teuthology.orchestra.run.smithi165.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-11T03:14:14.330 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-11T03:14:14.330 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-11T03:14:14.330 INFO:teuthology.orchestra.run.smithi165.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-11T03:14:14.330 INFO:teuthology.orchestra.run.smithi165.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-11T03:14:14.330 INFO:teuthology.orchestra.run.smithi165.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-11T03:14:14.330 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:14.330 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:14:14.331 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:14.331 INFO:teuthology.orchestra.run.smithi165.stdout:Install 13 Packages 2024-09-11T03:14:14.331 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:14.332 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 2.2 M 2024-09-11T03:14:14.332 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 26 M 2024-09-11T03:14:14.332 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:14:14.607 INFO:teuthology.orchestra.run.smithi165.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 210 kB/s | 26 kB 00:00 2024-09-11T03:14:14.633 INFO:teuthology.orchestra.run.smithi165.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 130 kB/s | 19 kB 00:00 2024-09-11T03:14:14.658 INFO:teuthology.orchestra.run.smithi165.stdout:(3/13): ceph-mgr-rook-19.3.0-4854.g8f219c47.el9 286 kB/s | 49 kB 00:00 2024-09-11T03:14:14.784 INFO:teuthology.orchestra.run.smithi165.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.0 MB/s | 159 kB 00:00 2024-09-11T03:14:14.809 INFO:teuthology.orchestra.run.smithi165.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.2 MB/s | 222 kB 00:00 2024-09-11T03:14:14.834 INFO:teuthology.orchestra.run.smithi165.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.0 MB/s | 54 kB 00:00 2024-09-11T03:14:14.876 INFO:teuthology.orchestra.run.smithi165.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.3 MB/s | 279 kB 00:00 2024-09-11T03:14:14.901 INFO:teuthology.orchestra.run.smithi165.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 349 kB/s | 32 kB 00:00 2024-09-11T03:14:14.935 INFO:teuthology.orchestra.run.smithi165.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 140 kB/s | 14 kB 00:00 2024-09-11T03:14:14.960 INFO:teuthology.orchestra.run.smithi165.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 2.5 MB/s | 59 kB 00:00 2024-09-11T03:14:14.985 INFO:teuthology.orchestra.run.smithi165.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 3.5 MB/s | 90 kB 00:00 2024-09-11T03:14:15.011 INFO:teuthology.orchestra.run.smithi165.stdout:(12/13): python3-google-auth-2.34.0-1.el9.noarc 1.6 MB/s | 220 kB 00:00 2024-09-11T03:14:15.053 INFO:teuthology.orchestra.run.smithi165.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 7.1 MB/s | 1.0 MB 00:00 2024-09-11T03:14:15.055 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:14:15.055 INFO:teuthology.orchestra.run.smithi165.stdout:Total 3.1 MB/s | 2.2 MB 00:00 2024-09-11T03:14:15.118 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:14:15.133 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:14:15.134 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:14:15.224 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:14:15.224 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:14:15.739 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:14:15.917 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-11T03:14:15.971 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-11T03:14:16.027 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-11T03:14:16.064 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-11T03:14:16.105 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-11T03:14:16.207 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-11T03:14:16.426 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-11T03:14:16.482 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-11T03:14:17.219 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-11T03:14:17.262 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-11T03:14:17.296 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-11T03:14:17.344 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-11T03:14:17.374 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-mgr-rook-2:19.3.0-4854.g8f219c47.el9.noarch 13/13 2024-09-11T03:14:18.061 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-mgr-rook-2:19.3.0-4854.g8f219c47.el9.noarch 13/13 2024-09-11T03:14:18.061 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-mgr-rook-2:19.3.0-4854.g8f219c47.el9.noarch 1/13 2024-09-11T03:14:18.061 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-11T03:14:18.061 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-11T03:14:18.061 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-11T03:14:18.061 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-11T03:14:18.061 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-11T03:14:18.061 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-11T03:14:18.062 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-11T03:14:18.062 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-11T03:14:18.062 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-11T03:14:18.062 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-11T03:14:18.062 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-11T03:14:18.392 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-11T03:14:18.393 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:18.393 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:14:18.393 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-rook-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:14:18.393 INFO:teuthology.orchestra.run.smithi165.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-11T03:14:18.393 INFO:teuthology.orchestra.run.smithi165.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-11T03:14:18.393 INFO:teuthology.orchestra.run.smithi165.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-11T03:14:18.393 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-11T03:14:18.393 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-11T03:14:18.393 INFO:teuthology.orchestra.run.smithi165.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-11T03:14:18.393 INFO:teuthology.orchestra.run.smithi165.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-11T03:14:18.393 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-11T03:14:18.393 INFO:teuthology.orchestra.run.smithi165.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-11T03:14:18.394 INFO:teuthology.orchestra.run.smithi165.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-11T03:14:18.394 INFO:teuthology.orchestra.run.smithi165.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-11T03:14:18.394 INFO:teuthology.orchestra.run.smithi165.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-11T03:14:18.394 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:18.394 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:18.645 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install ceph-mgr-cephadm 2024-09-11T03:14:19.221 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:24 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:19.356 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:19.357 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:19.357 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repository Size 2024-09-11T03:14:19.357 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:19.357 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:14:19.357 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-cephadm noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 154 k 2024-09-11T03:14:19.357 INFO:teuthology.orchestra.run.smithi165.stdout:Installing dependencies: 2024-09-11T03:14:19.358 INFO:teuthology.orchestra.run.smithi165.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-11T03:14:19.358 INFO:teuthology.orchestra.run.smithi165.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-11T03:14:19.358 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-11T03:14:19.358 INFO:teuthology.orchestra.run.smithi165.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-11T03:14:19.358 INFO:teuthology.orchestra.run.smithi165.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-11T03:14:19.358 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:19.358 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:14:19.358 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:19.358 INFO:teuthology.orchestra.run.smithi165.stdout:Install 6 Packages 2024-09-11T03:14:19.358 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:19.359 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 7.0 M 2024-09-11T03:14:19.359 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 33 M 2024-09-11T03:14:19.359 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:14:19.731 INFO:teuthology.orchestra.run.smithi165.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.6 MB/s | 248 kB 00:00 2024-09-11T03:14:19.781 INFO:teuthology.orchestra.run.smithi165.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 11 MB/s | 548 kB 00:00 2024-09-11T03:14:19.806 INFO:teuthology.orchestra.run.smithi165.stdout:(3/6): ceph-mgr-cephadm-19.3.0-4854.g8f219c47.e 673 kB/s | 154 kB 00:00 2024-09-11T03:14:19.831 INFO:teuthology.orchestra.run.smithi165.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 1.1 MB/s | 58 kB 00:00 2024-09-11T03:14:19.874 INFO:teuthology.orchestra.run.smithi165.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.1 MB/s | 74 kB 00:00 2024-09-11T03:14:19.949 INFO:teuthology.orchestra.run.smithi165.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 16 MB/s | 6.0 MB 00:00 2024-09-11T03:14:19.951 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:14:19.952 INFO:teuthology.orchestra.run.smithi165.stdout:Total 12 MB/s | 7.0 MB 00:00 2024-09-11T03:14:20.023 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:14:20.035 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:14:20.035 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:14:20.137 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:14:20.137 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:14:20.441 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:14:20.610 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-11T03:14:20.659 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-11T03:14:21.201 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-11T03:14:21.297 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-11T03:14:21.365 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-11T03:14:21.394 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-mgr-cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 6/6 2024-09-11T03:14:22.189 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 6/6 2024-09-11T03:14:22.190 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-mgr-cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 1/6 2024-09-11T03:14:22.190 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-11T03:14:22.190 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-11T03:14:22.190 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-11T03:14:22.190 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-11T03:14:22.458 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-11T03:14:22.458 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:22.458 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:14:22.458 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-mgr-cephadm-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:14:22.459 INFO:teuthology.orchestra.run.smithi165.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-11T03:14:22.459 INFO:teuthology.orchestra.run.smithi165.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-11T03:14:22.459 INFO:teuthology.orchestra.run.smithi165.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-11T03:14:22.459 INFO:teuthology.orchestra.run.smithi165.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-11T03:14:22.459 INFO:teuthology.orchestra.run.smithi165.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-11T03:14:22.459 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:22.460 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:22.717 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install ceph-fuse 2024-09-11T03:14:23.286 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:28 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:23.421 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:23.422 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:23.422 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repository Size 2024-09-11T03:14:23.422 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:23.422 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:14:23.422 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-fuse x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 900 k 2024-09-11T03:14:23.422 INFO:teuthology.orchestra.run.smithi165.stdout:Installing dependencies: 2024-09-11T03:14:23.422 INFO:teuthology.orchestra.run.smithi165.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-11T03:14:23.422 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:23.422 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:14:23.423 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:23.423 INFO:teuthology.orchestra.run.smithi165.stdout:Install 2 Packages 2024-09-11T03:14:23.423 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:23.423 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 980 k 2024-09-11T03:14:23.423 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 2.9 M 2024-09-11T03:14:23.423 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:14:23.618 INFO:teuthology.orchestra.run.smithi165.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 540 kB/s | 80 kB 00:00 2024-09-11T03:14:23.719 INFO:teuthology.orchestra.run.smithi165.stdout:(2/2): ceph-fuse-19.3.0-4854.g8f219c47.el9.x86_ 3.5 MB/s | 900 kB 00:00 2024-09-11T03:14:23.719 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:14:23.720 INFO:teuthology.orchestra.run.smithi165.stdout:Total 3.2 MB/s | 980 kB 00:00 2024-09-11T03:14:23.732 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:14:23.753 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:14:23.753 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:14:23.835 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:14:23.836 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:14:24.025 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:14:24.173 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-11T03:14:24.242 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 2/2 2024-09-11T03:14:24.934 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 2/2 2024-09-11T03:14:24.934 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 1/2 2024-09-11T03:14:25.195 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-11T03:14:25.195 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:25.195 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:14:25.195 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-11T03:14:25.195 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:25.195 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:25.507 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install ceph-volume 2024-09-11T03:14:26.090 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:31 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:26.228 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:26.228 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:26.228 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repository Size 2024-09-11T03:14:26.228 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:26.229 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:14:26.229 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-volume noarch 2:19.3.0-4854.g8f219c47.el9 ceph-noarch 285 k 2024-09-11T03:14:26.229 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:26.229 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:14:26.229 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:26.229 INFO:teuthology.orchestra.run.smithi165.stdout:Install 1 Package 2024-09-11T03:14:26.229 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:26.230 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 285 k 2024-09-11T03:14:26.230 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 1.3 M 2024-09-11T03:14:26.230 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:14:26.433 INFO:teuthology.orchestra.run.smithi165.stdout:ceph-volume-19.3.0-4854.g8f219c47.el9.noarch.rp 1.4 MB/s | 285 kB 00:00 2024-09-11T03:14:26.433 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:14:26.434 INFO:teuthology.orchestra.run.smithi165.stdout:Total 1.4 MB/s | 285 kB 00:00 2024-09-11T03:14:26.434 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:14:26.442 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:14:26.442 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:14:26.472 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:14:26.472 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:14:26.694 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:14:26.760 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : ceph-volume-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:14:26.777 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: ceph-volume-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:14:26.777 INFO:teuthology.orchestra.run.smithi165.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:14:26.777 INFO:teuthology.orchestra.run.smithi165.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-11T03:14:26.777 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:27.793 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : ceph-volume-2:19.3.0-4854.g8f219c47.el9.noarch 1/1 2024-09-11T03:14:27.794 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:27.794 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:14:27.794 INFO:teuthology.orchestra.run.smithi165.stdout: ceph-volume-2:19.3.0-4854.g8f219c47.el9.noarch 2024-09-11T03:14:27.794 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:27.794 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:28.117 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install librados-devel 2024-09-11T03:14:28.700 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:33 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:28.835 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:28.836 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:28.836 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repo Size 2024-09-11T03:14:28.836 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:28.836 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:14:28.836 INFO:teuthology.orchestra.run.smithi165.stdout: librados-devel x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 127 k 2024-09-11T03:14:28.837 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:28.837 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:14:28.837 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:28.837 INFO:teuthology.orchestra.run.smithi165.stdout:Install 1 Package 2024-09-11T03:14:28.837 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:28.837 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 127 k 2024-09-11T03:14:28.837 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 456 k 2024-09-11T03:14:28.837 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:14:29.047 INFO:teuthology.orchestra.run.smithi165.stdout:librados-devel-19.3.0-4854.g8f219c47.el9.x86_64 604 kB/s | 127 kB 00:00 2024-09-11T03:14:29.047 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:14:29.048 INFO:teuthology.orchestra.run.smithi165.stdout:Total 599 kB/s | 127 kB 00:00 2024-09-11T03:14:29.048 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:14:29.053 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:14:29.053 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:14:29.122 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:14:29.123 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:14:29.279 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:14:29.387 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : librados-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:29.857 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: librados-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:30.107 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : librados-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:30.107 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:30.107 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:14:30.107 INFO:teuthology.orchestra.run.smithi165.stdout: librados-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:14:30.107 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:30.107 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:30.387 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install libcephfs2 2024-09-11T03:14:30.966 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:35 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:31.058 INFO:teuthology.orchestra.run.smithi165.stdout:Package libcephfs2-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:14:31.102 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:31.103 INFO:teuthology.orchestra.run.smithi165.stdout:Nothing to do. 2024-09-11T03:14:31.103 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:31.203 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install libcephfs-devel 2024-09-11T03:14:31.777 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:36 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:31.912 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:31.912 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:31.912 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repo Size 2024-09-11T03:14:31.913 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:31.913 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:14:31.913 INFO:teuthology.orchestra.run.smithi165.stdout: libcephfs-devel x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 32 k 2024-09-11T03:14:31.913 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:31.913 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:14:31.913 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:31.913 INFO:teuthology.orchestra.run.smithi165.stdout:Install 1 Package 2024-09-11T03:14:31.913 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:31.914 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 32 k 2024-09-11T03:14:31.914 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 142 k 2024-09-11T03:14:31.914 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:14:32.077 INFO:teuthology.orchestra.run.smithi165.stdout:libcephfs-devel-19.3.0-4854.g8f219c47.el9.x86_6 195 kB/s | 32 kB 00:00 2024-09-11T03:14:32.078 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:14:32.078 INFO:teuthology.orchestra.run.smithi165.stdout:Total 193 kB/s | 32 kB 00:00 2024-09-11T03:14:32.078 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:14:32.081 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:14:32.081 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:14:32.100 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:14:32.100 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:14:32.187 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:14:32.300 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : libcephfs-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:32.683 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: libcephfs-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:32.914 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : libcephfs-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:32.914 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:32.914 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:14:32.914 INFO:teuthology.orchestra.run.smithi165.stdout: libcephfs-devel-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:14:32.915 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:32.915 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:33.100 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install librados2 2024-09-11T03:14:33.669 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:38 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:33.758 INFO:teuthology.orchestra.run.smithi165.stdout:Package librados2-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:14:33.801 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:33.802 INFO:teuthology.orchestra.run.smithi165.stdout:Nothing to do. 2024-09-11T03:14:33.802 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:33.883 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install librbd1 2024-09-11T03:14:34.451 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:39 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:34.542 INFO:teuthology.orchestra.run.smithi165.stdout:Package librbd1-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:14:34.585 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:34.586 INFO:teuthology.orchestra.run.smithi165.stdout:Nothing to do. 2024-09-11T03:14:34.586 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:34.670 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install python3-rados 2024-09-11T03:14:35.239 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:40 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:35.331 INFO:teuthology.orchestra.run.smithi165.stdout:Package python3-rados-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:14:35.375 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:35.376 INFO:teuthology.orchestra.run.smithi165.stdout:Nothing to do. 2024-09-11T03:14:35.376 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:35.450 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install python3-rgw 2024-09-11T03:14:36.020 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:41 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:36.111 INFO:teuthology.orchestra.run.smithi165.stdout:Package python3-rgw-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:14:36.156 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:36.157 INFO:teuthology.orchestra.run.smithi165.stdout:Nothing to do. 2024-09-11T03:14:36.157 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:36.245 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install python3-cephfs 2024-09-11T03:14:36.816 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:41 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:36.904 INFO:teuthology.orchestra.run.smithi165.stdout:Package python3-cephfs-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:14:36.948 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:36.949 INFO:teuthology.orchestra.run.smithi165.stdout:Nothing to do. 2024-09-11T03:14:36.949 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:37.033 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install python3-rbd 2024-09-11T03:14:37.593 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:42 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:37.683 INFO:teuthology.orchestra.run.smithi165.stdout:Package python3-rbd-2:19.3.0-4854.g8f219c47.el9.x86_64 is already installed. 2024-09-11T03:14:37.726 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:37.727 INFO:teuthology.orchestra.run.smithi165.stdout:Nothing to do. 2024-09-11T03:14:37.727 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:37.810 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install rbd-fuse 2024-09-11T03:14:38.380 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:43 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:38.514 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:38.514 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:38.514 INFO:teuthology.orchestra.run.smithi165.stdout: Package Architecture Version Repository Size 2024-09-11T03:14:38.514 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:38.514 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:14:38.514 INFO:teuthology.orchestra.run.smithi165.stdout: rbd-fuse x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 85 k 2024-09-11T03:14:38.514 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:38.515 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:14:38.515 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:38.515 INFO:teuthology.orchestra.run.smithi165.stdout:Install 1 Package 2024-09-11T03:14:38.515 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:38.515 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 85 k 2024-09-11T03:14:38.515 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 231 k 2024-09-11T03:14:38.515 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:14:38.705 INFO:teuthology.orchestra.run.smithi165.stdout:rbd-fuse-19.3.0-4854.g8f219c47.el9.x86_64.rpm 450 kB/s | 85 kB 00:00 2024-09-11T03:14:38.705 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:14:38.706 INFO:teuthology.orchestra.run.smithi165.stdout:Total 446 kB/s | 85 kB 00:00 2024-09-11T03:14:38.706 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:14:38.713 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:14:38.713 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:14:38.777 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:14:38.778 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:14:38.979 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:14:39.078 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : rbd-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:39.456 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: rbd-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:39.712 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : rbd-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:39.713 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:39.713 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:14:39.713 INFO:teuthology.orchestra.run.smithi165.stdout: rbd-fuse-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:14:39.713 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:39.713 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:39.922 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install rbd-mirror 2024-09-11T03:14:40.513 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:45 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:40.660 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:40.660 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:40.660 INFO:teuthology.orchestra.run.smithi165.stdout: Package Arch Version Repo Size 2024-09-11T03:14:40.661 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:40.661 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:14:40.661 INFO:teuthology.orchestra.run.smithi165.stdout: rbd-mirror x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 3.2 M 2024-09-11T03:14:40.661 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:40.661 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:14:40.661 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:40.661 INFO:teuthology.orchestra.run.smithi165.stdout:Install 1 Package 2024-09-11T03:14:40.661 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:40.662 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 3.2 M 2024-09-11T03:14:40.662 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 14 M 2024-09-11T03:14:40.662 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:14:41.003 INFO:teuthology.orchestra.run.smithi165.stdout:rbd-mirror-19.3.0-4854.g8f219c47.el9.x86_64.rpm 9.3 MB/s | 3.2 MB 00:00 2024-09-11T03:14:41.004 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:14:41.004 INFO:teuthology.orchestra.run.smithi165.stdout:Total 9.3 MB/s | 3.2 MB 00:00 2024-09-11T03:14:41.004 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:14:41.014 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:14:41.014 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:14:41.097 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:14:41.097 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:14:41.544 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:14:41.721 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : rbd-mirror-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:41.748 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: rbd-mirror-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:41.748 INFO:teuthology.orchestra.run.smithi165.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-11T03:14:41.749 INFO:teuthology.orchestra.run.smithi165.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-11T03:14:41.749 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-11T03:14:41.749 INFO:teuthology.orchestra.run.smithi165.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-11T03:14:41.749 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:42.717 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : rbd-mirror-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:42.717 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:42.717 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:14:42.717 INFO:teuthology.orchestra.run.smithi165.stdout: rbd-mirror-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:14:42.717 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:42.717 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:42.921 DEBUG:teuthology.orchestra.run.smithi165:> sudo yum -y install rbd-nbd 2024-09-11T03:14:43.505 INFO:teuthology.orchestra.run.smithi165.stdout:Last metadata expiration check: 0:01:48 ago on Wed 11 Sep 2024 03:12:55 AM UTC. 2024-09-11T03:14:43.641 INFO:teuthology.orchestra.run.smithi165.stdout:Dependencies resolved. 2024-09-11T03:14:43.642 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:43.642 INFO:teuthology.orchestra.run.smithi165.stdout: Package Architecture Version Repository Size 2024-09-11T03:14:43.642 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:43.642 INFO:teuthology.orchestra.run.smithi165.stdout:Installing: 2024-09-11T03:14:43.642 INFO:teuthology.orchestra.run.smithi165.stdout: rbd-nbd x86_64 2:19.3.0-4854.g8f219c47.el9 ceph 171 k 2024-09-11T03:14:43.642 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:43.642 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction Summary 2024-09-11T03:14:43.642 INFO:teuthology.orchestra.run.smithi165.stdout:================================================================================ 2024-09-11T03:14:43.642 INFO:teuthology.orchestra.run.smithi165.stdout:Install 1 Package 2024-09-11T03:14:43.642 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:43.643 INFO:teuthology.orchestra.run.smithi165.stdout:Total download size: 171 k 2024-09-11T03:14:43.643 INFO:teuthology.orchestra.run.smithi165.stdout:Installed size: 490 k 2024-09-11T03:14:43.643 INFO:teuthology.orchestra.run.smithi165.stdout:Downloading Packages: 2024-09-11T03:14:43.856 INFO:teuthology.orchestra.run.smithi165.stdout:rbd-nbd-19.3.0-4854.g8f219c47.el9.x86_64.rpm 801 kB/s | 171 kB 00:00 2024-09-11T03:14:43.856 INFO:teuthology.orchestra.run.smithi165.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:14:43.857 INFO:teuthology.orchestra.run.smithi165.stdout:Total 795 kB/s | 171 kB 00:00 2024-09-11T03:14:43.857 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction check 2024-09-11T03:14:43.864 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction check succeeded. 2024-09-11T03:14:43.864 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction test 2024-09-11T03:14:43.929 INFO:teuthology.orchestra.run.smithi165.stdout:Transaction test succeeded. 2024-09-11T03:14:43.930 INFO:teuthology.orchestra.run.smithi165.stdout:Running transaction 2024-09-11T03:14:44.086 INFO:teuthology.orchestra.run.smithi165.stdout: Preparing : 1/1 2024-09-11T03:14:44.187 INFO:teuthology.orchestra.run.smithi165.stdout: Installing : rbd-nbd-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:44.625 INFO:teuthology.orchestra.run.smithi165.stdout: Running scriptlet: rbd-nbd-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:44.946 INFO:teuthology.orchestra.run.smithi165.stdout: Verifying : rbd-nbd-2:19.3.0-4854.g8f219c47.el9.x86_64 1/1 2024-09-11T03:14:44.946 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:44.946 INFO:teuthology.orchestra.run.smithi165.stdout:Installed: 2024-09-11T03:14:44.946 INFO:teuthology.orchestra.run.smithi165.stdout: rbd-nbd-2:19.3.0-4854.g8f219c47.el9.x86_64 2024-09-11T03:14:44.946 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:14:44.946 INFO:teuthology.orchestra.run.smithi165.stdout:Complete! 2024-09-11T03:14:45.146 DEBUG:teuthology.parallel:result is None 2024-09-11T03:14:45.147 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=8f219c476cb4f26fc5719c661c0323719a45cb30 2024-09-11T03:14:45.300 DEBUG:teuthology.orchestra.run.smithi050:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-11T03:14:45.327 INFO:teuthology.orchestra.run.smithi050.stdout:19.3.0-4854.g8f219c47.el9 2024-09-11T03:14:45.328 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-4854.g8f219c47.el9 2024-09-11T03:14:45.328 INFO:teuthology.task.install:The correct ceph version 19.3.0-4854.g8f219c47 is installed. 2024-09-11T03:14:45.330 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=8f219c476cb4f26fc5719c661c0323719a45cb30 2024-09-11T03:14:45.480 DEBUG:teuthology.orchestra.run.smithi120:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-11T03:14:45.505 INFO:teuthology.orchestra.run.smithi120.stdout:19.3.0-4854.g8f219c47.el9 2024-09-11T03:14:45.506 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-4854.g8f219c47.el9 2024-09-11T03:14:45.506 INFO:teuthology.task.install:The correct ceph version 19.3.0-4854.g8f219c47 is installed. 2024-09-11T03:14:45.507 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=8f219c476cb4f26fc5719c661c0323719a45cb30 2024-09-11T03:14:45.655 DEBUG:teuthology.orchestra.run.smithi165:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-11T03:14:45.677 INFO:teuthology.orchestra.run.smithi165.stdout:19.3.0-4854.g8f219c47.el9 2024-09-11T03:14:45.678 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-4854.g8f219c47.el9 2024-09-11T03:14:45.678 INFO:teuthology.task.install:The correct ceph version 19.3.0-4854.g8f219c47 is installed. 2024-09-11T03:14:45.679 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-11T03:14:45.680 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:14:45.680 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-11T03:14:45.712 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-11T03:14:45.712 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-11T03:14:45.743 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-11T03:14:45.743 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-11T03:14:45.769 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-11T03:14:45.769 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:14:45.769 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/usr/bin/daemon-helper 2024-09-11T03:14:45.799 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-11T03:14:45.869 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-11T03:14:45.869 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/usr/bin/daemon-helper 2024-09-11T03:14:45.898 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-11T03:14:45.964 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-11T03:14:45.964 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/usr/bin/daemon-helper 2024-09-11T03:14:45.990 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-11T03:14:46.054 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-11T03:14:46.054 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:14:46.054 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-11T03:14:46.086 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-11T03:14:46.155 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-11T03:14:46.155 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-11T03:14:46.180 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-11T03:14:46.246 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-11T03:14:46.247 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-11T03:14:46.272 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-11T03:14:46.337 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-11T03:14:46.337 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:14:46.337 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/usr/bin/stdin-killer 2024-09-11T03:14:46.364 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-11T03:14:46.430 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-11T03:14:46.430 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/usr/bin/stdin-killer 2024-09-11T03:14:46.456 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-11T03:14:46.520 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-11T03:14:46.520 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/usr/bin/stdin-killer 2024-09-11T03:14:46.545 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-11T03:14:46.610 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-11T03:14:46.703 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 3}, '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', 'CEPHADM_STRAY_HOST', 'CEPHADM_STRAY_DAEMON', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': '8f219c476cb4f26fc5719c661c0323719a45cb30'} 2024-09-11T03:14:46.703 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 2024-09-11T03:14:46.704 INFO:tasks.cephadm:Cluster fsid is ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:14:46.704 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-11T03:14:46.704 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.50', 'mon.b': '172.21.15.120', 'mon.c': '172.21.15.165'} 2024-09-11T03:14:46.704 INFO:tasks.cephadm:First mon is mon.a on smithi050 2024-09-11T03:14:46.704 INFO:tasks.cephadm:First mgr is a 2024-09-11T03:14:46.704 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-11T03:14:46.705 DEBUG:teuthology.orchestra.run.smithi050:> sudo hostname $(hostname -s) 2024-09-11T03:14:46.731 DEBUG:teuthology.orchestra.run.smithi120:> sudo hostname $(hostname -s) 2024-09-11T03:14:46.756 DEBUG:teuthology.orchestra.run.smithi165:> sudo hostname $(hostname -s) 2024-09-11T03:14:46.781 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-11T03:14:46.782 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=8f219c476cb4f26fc5719c661c0323719a45cb30 2024-09-11T03:14:46.940 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '8f219c476cb4f26fc5719c661c0323719a45cb30', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/82938/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.3.0-4854-g8f219c47', 'node_name': '172.21.2.8+braggi08', 'job_name': 'ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.3.0-4854.g8f219c47'}, 'url': 'https://3.chacra.ceph.com/r/ceph/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-09-10 09:27:13.215997', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-hemanth-testing-2024-09-10-0723', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/centos/9/flavors/default/', 'archs': ['source', 'x86_64'], 'distro': 'centos'}] 2024-09-11T03:14:47.085 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref wip-hemanth-testing-2024-09-10-0723, sha1 8f219c476cb4f26fc5719c661c0323719a45cb30 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=8f219c476cb4f26fc5719c661c0323719a45cb30 2024-09-11T03:14:47.087 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/centos/9/x86_64/flavors/default/cephadm 2024-09-11T03:14:47.088 INFO:tasks.cephadm:Downloading cephadm from url: https://3.chacra.ceph.com/binaries/ceph/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/centos/9/x86_64/flavors/default/cephadm 2024-09-11T03:14:47.088 DEBUG:teuthology.orchestra.run.smithi050:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-11T03:14:47.469 INFO:teuthology.orchestra.run.smithi050.stdout:-rw-r--r--. 1 ubuntu ubuntu 803561 Sep 11 03:14 /home/ubuntu/cephtest/cephadm 2024-09-11T03:14:47.470 DEBUG:teuthology.orchestra.run.smithi120:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-11T03:14:47.847 INFO:teuthology.orchestra.run.smithi120.stdout:-rw-r--r--. 1 ubuntu ubuntu 803561 Sep 11 03:14 /home/ubuntu/cephtest/cephadm 2024-09-11T03:14:47.848 DEBUG:teuthology.orchestra.run.smithi165:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-hemanth-testing-2024-09-10-0723/8f219c476cb4f26fc5719c661c0323719a45cb30/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-11T03:14:48.673 INFO:teuthology.orchestra.run.smithi165.stdout:-rw-r--r--. 1 ubuntu ubuntu 803561 Sep 11 03:14 /home/ubuntu/cephtest/cephadm 2024-09-11T03:14:48.673 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-09-11T03:14:48.693 DEBUG:teuthology.orchestra.run.smithi120:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-11T03:14:48.713 DEBUG:teuthology.orchestra.run.smithi165:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-11T03:14:48.743 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 on all hosts... 2024-09-11T03:14:48.743 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 pull 2024-09-11T03:14:48.746 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 pull 2024-09-11T03:14:48.756 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 pull 2024-09-11T03:14:50.235 INFO:teuthology.orchestra.run.smithi165.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30... 2024-09-11T03:14:50.240 INFO:teuthology.orchestra.run.smithi050.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30... 2024-09-11T03:14:50.419 INFO:teuthology.orchestra.run.smithi120.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30... 2024-09-11T03:15:22.723 INFO:teuthology.orchestra.run.smithi165.stdout:{ 2024-09-11T03:15:22.724 INFO:teuthology.orchestra.run.smithi165.stdout: "ceph_version": "ceph version 19.3.0-4854-g8f219c47 (8f219c476cb4f26fc5719c661c0323719a45cb30) squid (dev)", 2024-09-11T03:15:22.724 INFO:teuthology.orchestra.run.smithi165.stdout: "image_id": "589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480", 2024-09-11T03:15:22.724 INFO:teuthology.orchestra.run.smithi165.stdout: "repo_digests": [ 2024-09-11T03:15:22.724 INFO:teuthology.orchestra.run.smithi165.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e" 2024-09-11T03:15:22.724 INFO:teuthology.orchestra.run.smithi165.stdout: ] 2024-09-11T03:15:22.724 INFO:teuthology.orchestra.run.smithi165.stdout:} 2024-09-11T03:15:29.559 INFO:teuthology.orchestra.run.smithi120.stdout:{ 2024-09-11T03:15:29.559 INFO:teuthology.orchestra.run.smithi120.stdout: "ceph_version": "ceph version 19.3.0-4854-g8f219c47 (8f219c476cb4f26fc5719c661c0323719a45cb30) squid (dev)", 2024-09-11T03:15:29.559 INFO:teuthology.orchestra.run.smithi120.stdout: "image_id": "589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480", 2024-09-11T03:15:29.559 INFO:teuthology.orchestra.run.smithi120.stdout: "repo_digests": [ 2024-09-11T03:15:29.559 INFO:teuthology.orchestra.run.smithi120.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e" 2024-09-11T03:15:29.560 INFO:teuthology.orchestra.run.smithi120.stdout: ] 2024-09-11T03:15:29.560 INFO:teuthology.orchestra.run.smithi120.stdout:} 2024-09-11T03:15:32.300 INFO:teuthology.orchestra.run.smithi050.stdout:{ 2024-09-11T03:15:32.300 INFO:teuthology.orchestra.run.smithi050.stdout: "ceph_version": "ceph version 19.3.0-4854-g8f219c47 (8f219c476cb4f26fc5719c661c0323719a45cb30) squid (dev)", 2024-09-11T03:15:32.300 INFO:teuthology.orchestra.run.smithi050.stdout: "image_id": "589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480", 2024-09-11T03:15:32.300 INFO:teuthology.orchestra.run.smithi050.stdout: "repo_digests": [ 2024-09-11T03:15:32.300 INFO:teuthology.orchestra.run.smithi050.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e" 2024-09-11T03:15:32.300 INFO:teuthology.orchestra.run.smithi050.stdout: ] 2024-09-11T03:15:32.300 INFO:teuthology.orchestra.run.smithi050.stdout:} 2024-09-11T03:15:32.329 DEBUG:teuthology.orchestra.run.smithi050:> sudo mkdir -p /etc/ceph 2024-09-11T03:15:32.374 DEBUG:teuthology.orchestra.run.smithi120:> sudo mkdir -p /etc/ceph 2024-09-11T03:15:32.409 DEBUG:teuthology.orchestra.run.smithi165:> sudo mkdir -p /etc/ceph 2024-09-11T03:15:32.442 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 777 /etc/ceph 2024-09-11T03:15:32.468 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 777 /etc/ceph 2024-09-11T03:15:32.496 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod 777 /etc/ceph 2024-09-11T03:15:32.523 INFO:tasks.cephadm:Writing seed config... 2024-09-11T03:15:32.525 INFO:tasks.cephadm: override: [global] mon election default strategy = 3 2024-09-11T03:15:32.525 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-11T03:15:32.525 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-11T03:15:32.525 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = True 2024-09-11T03:15:32.525 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-11T03:15:32.525 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-11T03:15:32.525 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-11T03:15:32.525 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-11T03:15:32.525 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-11T03:15:32.526 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:15:32.526 DEBUG:teuthology.orchestra.run.smithi050:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-11T03:15:32.543 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 = ff8a8a62-6feb-11ef-bcea-c7b262605968 mon election default strategy = 3 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = true bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 mgr/cephadm/use_agent = 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-09-11T03:15:32.543 DEBUG:teuthology.orchestra.run.smithi050:mon.a> sudo journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.a.service 2024-09-11T03:15:32.586 DEBUG:teuthology.orchestra.run.smithi050:mgr.a> sudo journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mgr.a.service 2024-09-11T03:15:32.629 INFO:tasks.cephadm:Bootstrapping... 2024-09-11T03:15:32.629 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 -v bootstrap --fsid ff8a8a62-6feb-11ef-bcea-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-09-11T03:15:32.842 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-11T03:15:32.842 INFO:teuthology.orchestra.run.smithi050.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30', '-v', 'bootstrap', '--fsid', 'ff8a8a62-6feb-11ef-bcea-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-09-11T03:15:32.842 INFO:teuthology.orchestra.run.smithi050.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-11T03:15:32.842 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying podman|docker is present... 2024-09-11T03:15:32.865 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stdout 5.2.2 2024-09-11T03:15:32.866 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying lvm2 is present... 2024-09-11T03:15:32.866 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying time synchronization is in place... 2024-09-11T03:15:32.874 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-11T03:15:32.874 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-11T03:15:32.880 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-11T03:15:32.880 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-11T03:15:32.887 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout enabled 2024-09-11T03:15:32.894 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout active 2024-09-11T03:15:32.894 INFO:teuthology.orchestra.run.smithi050.stdout:Unit chronyd.service is enabled and running 2024-09-11T03:15:32.894 INFO:teuthology.orchestra.run.smithi050.stdout:Repeating the final host check... 2024-09-11T03:15:32.917 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stdout 5.2.2 2024-09-11T03:15:32.917 INFO:teuthology.orchestra.run.smithi050.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-11T03:15:32.917 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl is present 2024-09-11T03:15:32.917 INFO:teuthology.orchestra.run.smithi050.stdout:lvcreate is present 2024-09-11T03:15:32.924 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-11T03:15:32.924 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-11T03:15:32.930 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-11T03:15:32.930 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-11T03:15:32.937 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout enabled 2024-09-11T03:15:32.944 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout active 2024-09-11T03:15:32.944 INFO:teuthology.orchestra.run.smithi050.stdout:Unit chronyd.service is enabled and running 2024-09-11T03:15:32.944 INFO:teuthology.orchestra.run.smithi050.stdout:Host looks OK 2024-09-11T03:15:32.944 INFO:teuthology.orchestra.run.smithi050.stdout:Cluster fsid: ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:15:32.944 INFO:teuthology.orchestra.run.smithi050.stdout:Acquiring lock 139936816628592 on /run/cephadm/ff8a8a62-6feb-11ef-bcea-c7b262605968.lock 2024-09-11T03:15:32.945 INFO:teuthology.orchestra.run.smithi050.stdout:Lock 139936816628592 acquired on /run/cephadm/ff8a8a62-6feb-11ef-bcea-c7b262605968.lock 2024-09-11T03:15:32.945 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying IP 172.21.15.50 port 3300 ... 2024-09-11T03:15:32.945 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying IP 172.21.15.50 port 6789 ... 2024-09-11T03:15:32.946 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-09-11T03:15:32.948 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-09-11T03:15:32.948 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-09-11T03:15:32.951 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-11T03:15:32.951 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-11T03:15:32.951 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1794sec hoplimit 64 pref medium 2024-09-11T03:15:32.953 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-11T03:15:32.954 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-11T03:15:32.954 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-11T03:15:32.954 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-11T03:15:32.954 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:1584/64 scope link 2024-09-11T03:15:32.954 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-11T03:15:32.954 INFO:teuthology.orchestra.run.smithi050.stdout:Mon IP `172.21.15.50` is in CIDR network `172.21.0.0/20` 2024-09-11T03:15:32.954 INFO:teuthology.orchestra.run.smithi050.stdout:Mon IP `172.21.15.50` is in CIDR network `172.21.0.0/20` 2024-09-11T03:15:32.955 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-09-11T03:15:32.955 INFO:teuthology.orchestra.run.smithi050.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-11T03:15:32.955 INFO:teuthology.orchestra.run.smithi050.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30... 2024-09-11T03:15:33.427 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stdout 589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480 2024-09-11T03:15:33.427 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30... 2024-09-11T03:15:33.428 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stderr Getting image source signatures 2024-09-11T03:15:33.428 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stderr Copying blob sha256:edd8cbe4deb828f809e8d76f308301dd93e971948e909d25cc03015fed1fd796 2024-09-11T03:15:33.428 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-11T03:15:33.428 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stderr Copying config sha256:589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480 2024-09-11T03:15:33.428 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-11T03:15:34.316 INFO:teuthology.orchestra.run.smithi050.stdout:ceph: stdout ceph version 19.3.0-4854-g8f219c47 (8f219c476cb4f26fc5719c661c0323719a45cb30) squid (dev) 2024-09-11T03:15:34.316 INFO:teuthology.orchestra.run.smithi050.stdout:Ceph version: ceph version 19.3.0-4854-g8f219c47 (8f219c476cb4f26fc5719c661c0323719a45cb30) squid (dev) 2024-09-11T03:15:34.316 INFO:teuthology.orchestra.run.smithi050.stdout:Extracting ceph user uid/gid from container image... 2024-09-11T03:15:35.298 INFO:teuthology.orchestra.run.smithi050.stdout:stat: stdout 167 167 2024-09-11T03:15:35.299 INFO:teuthology.orchestra.run.smithi050.stdout:Creating initial keys... 2024-09-11T03:15:36.327 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-authtool: stdout AQBXC+Fm4Eu1JRAAO2vm7w3s6KV1Da5isXADHg== 2024-09-11T03:15:37.317 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-authtool: stdout AQBYC+FmgCWNKxAAFkNwlnfLJCbcT2YFKWRBOg== 2024-09-11T03:15:38.297 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-authtool: stdout AQBZC+Fm0gl4KRAAKGks2v4S2K40kHzOXFYLYg== 2024-09-11T03:15:38.298 INFO:teuthology.orchestra.run.smithi050.stdout:Creating initial monmap... 2024-09-11T03:15:39.387 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-11T03:15:39.388 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-11T03:15:39.388 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:15:39.388 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-11T03:15:39.388 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-09-11T03:15:39.388 INFO:teuthology.orchestra.run.smithi050.stdout:setting min_mon_release = quincy 2024-09-11T03:15:39.388 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: set fsid to ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:15:39.388 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-11T03:15:39.388 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:15:39.388 INFO:teuthology.orchestra.run.smithi050.stdout:Creating mon... 2024-09-11T03:15:40.368 INFO:teuthology.orchestra.run.smithi050.stdout:create mon.a on 2024-09-11T03:15:40.590 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-09-11T03:15:40.739 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-09-11T03:15:40.933 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968.target → /etc/systemd/system/ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968.target. 2024-09-11T03:15:40.933 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968.target → /etc/systemd/system/ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968.target. 2024-09-11T03:15:41.228 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.a 2024-09-11T03:15:41.228 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to reset failed state of unit ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.a.service: Unit ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.a.service not loaded. 2024-09-11T03:15:41.392 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968.target.wants/ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.a.service → /etc/systemd/system/ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@.service. 2024-09-11T03:15:41.723 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:41 smithi050 podman[29212]: 2024-09-11 03:15:41.531706628 +0000 UTC m=+0.016360067 image pull 589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 2024-09-11T03:15:41.883 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-11T03:15:41.883 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout disabled 2024-09-11T03:15:41.890 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-11T03:15:41.890 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-11T03:15:41.890 INFO:teuthology.orchestra.run.smithi050.stdout:firewalld.service is not enabled 2024-09-11T03:15:41.890 INFO:teuthology.orchestra.run.smithi050.stdout:Not possible to enable service . firewalld.service is not available 2024-09-11T03:15:41.891 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mon to start... 2024-09-11T03:15:41.891 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mon... 2024-09-11T03:15:42.110 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:41 smithi050 podman[29212]: 2024-09-11 03:15:41.795147832 +0000 UTC m=+0.279801270 container init 48b4c377acc696394a2c0d5da9d7c3b2d236f5c183d03006d12cc24bbb51857b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, ceph=True, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-11T03:15:42.111 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:41 smithi050 podman[29212]: 2024-09-11 03:15:41.799811603 +0000 UTC m=+0.284465042 container start 48b4c377acc696394a2c0d5da9d7c3b2d236f5c183d03006d12cc24bbb51857b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a, ceph=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, maintainer=Guillaume Abrioux , GIT_CLEAN=True) 2024-09-11T03:15:42.111 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:41 smithi050 ceph-mon[29250]: mkfs ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:15:42.111 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:41 smithi050 ceph-mon[29250]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-11T03:15:42.111 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:41 smithi050 bash[29212]: 48b4c377acc696394a2c0d5da9d7c3b2d236f5c183d03006d12cc24bbb51857b 2024-09-11T03:15:42.111 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:41 smithi050 systemd[1]: Started Ceph mon.a for ff8a8a62-6feb-11ef-bcea-c7b262605968. 2024-09-11T03:15:42.968 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:42 smithi050 ceph-mon[29250]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-11T03:15:42.968 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:42 smithi050 ceph-mon[29250]: monmap epoch 1 2024-09-11T03:15:42.968 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:42 smithi050 ceph-mon[29250]: fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:15:42.969 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:42 smithi050 ceph-mon[29250]: last_changed 2024-09-11T03:15:38.656471+0000 2024-09-11T03:15:42.969 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:42 smithi050 ceph-mon[29250]: created 2024-09-11T03:15:38.656471+0000 2024-09-11T03:15:42.969 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:42 smithi050 ceph-mon[29250]: min_mon_release 19 (squid) 2024-09-11T03:15:42.969 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:42 smithi050 ceph-mon[29250]: election_strategy: 1 2024-09-11T03:15:42.969 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:42 smithi050 ceph-mon[29250]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-09-11T03:15:42.969 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:42 smithi050 ceph-mon[29250]: fsmap 2024-09-11T03:15:42.969 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:42 smithi050 ceph-mon[29250]: osdmap e1: 0 total, 0 up, 0 in 2024-09-11T03:15:42.969 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:42 smithi050 ceph-mon[29250]: mgrmap e1: no daemons active 2024-09-11T03:15:42.969 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:42 smithi050 ceph-mon[29250]: from='client.? 172.21.15.50:0/2213758427' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-11T03:15:42.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout cluster: 2024-09-11T03:15:42.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout id: ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:15:42.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-11T03:15:42.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-11T03:15:42.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout services: 2024-09-11T03:15:42.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.565625s) 2024-09-11T03:15:42.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-11T03:15:42.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-11T03:15:42.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-11T03:15:42.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout data: 2024-09-11T03:15:42.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-11T03:15:42.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-11T03:15:42.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-11T03:15:42.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout pgs: 2024-09-11T03:15:42.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-11T03:15:42.973 INFO:teuthology.orchestra.run.smithi050.stdout:mon is available 2024-09-11T03:15:42.973 INFO:teuthology.orchestra.run.smithi050.stdout:Assimilating anything we can from ceph.conf... 2024-09-11T03:15:44.001 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:43 smithi050 ceph-mon[29250]: from='client.? 172.21.15.50:0/3675869450' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-11T03:15:44.001 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:43 smithi050 ceph-mon[29250]: from='client.? 172.21.15.50:0/3675869450' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-11T03:15:44.003 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-11T03:15:44.003 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [global] 2024-09-11T03:15:44.003 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout fsid = ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:15:44.003 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-11T03:15:44.003 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-09-11T03:15:44.003 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-11T03:15:44.004 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-11T03:15:44.004 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-11T03:15:44.004 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-11T03:15:44.004 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-11T03:15:44.004 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-11T03:15:44.004 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = True 2024-09-11T03:15:44.004 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-11T03:15:44.004 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-11T03:15:44.004 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [osd] 2024-09-11T03:15:44.004 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-11T03:15:44.004 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-11T03:15:44.004 INFO:teuthology.orchestra.run.smithi050.stdout:Generating new minimal ceph.conf... 2024-09-11T03:15:45.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:44 smithi050 ceph-mon[29250]: from='client.? 172.21.15.50:0/2017318007' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:15:48.865 INFO:teuthology.orchestra.run.smithi050.stdout:Restarting the monitor... 2024-09-11T03:15:49.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:48 smithi050 systemd[1]: Stopping Ceph mon.a for ff8a8a62-6feb-11ef-bcea-c7b262605968... 2024-09-11T03:15:50.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:50 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a[29227]: 2024-09-11T03:15:50.262+0000 7f952fabb640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-11T03:15:50.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:50 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a[29227]: 2024-09-11T03:15:50.262+0000 7f952fabb640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-11T03:15:50.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:50 smithi050 podman[29565]: 2024-09-11 03:15:50.488341671 +0000 UTC m=+1.442529986 container died 48b4c377acc696394a2c0d5da9d7c3b2d236f5c183d03006d12cc24bbb51857b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_BRANCH=HEAD, ceph=True, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-11T03:15:54.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:54 smithi050 podman[29565]: 2024-09-11 03:15:54.321813611 +0000 UTC m=+5.276001925 container cleanup 48b4c377acc696394a2c0d5da9d7c3b2d236f5c183d03006d12cc24bbb51857b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, ceph=True, org.label-schema.license=GPLv2, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-11T03:15:54.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:54 smithi050 bash[29565]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a 2024-09-11T03:15:56.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 podman[29582]: 2024-09-11 03:15:56.261804485 +0000 UTC m=+5.774399085 container remove 48b4c377acc696394a2c0d5da9d7c3b2d236f5c183d03006d12cc24bbb51857b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, ceph=True, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, GIT_BRANCH=HEAD) 2024-09-11T03:15:56.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 systemd[1]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-11T03:15:56.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 systemd[1]: Stopped Ceph mon.a for ff8a8a62-6feb-11ef-bcea-c7b262605968. 2024-09-11T03:15:56.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 systemd[1]: Starting Ceph mon.a for ff8a8a62-6feb-11ef-bcea-c7b262605968... 2024-09-11T03:15:56.924 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 podman[29679]: 2024-09-11 03:15:56.671011076 +0000 UTC m=+0.111884809 container create 92c594575e43c8946e7c7f5e5f17f7f1c3b785ec9ee7ca87baee5d67950b91a5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_CLEAN=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD) 2024-09-11T03:15:56.925 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 podman[29679]: 2024-09-11 03:15:56.575374493 +0000 UTC m=+0.016248194 image pull 589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 2024-09-11T03:15:56.925 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 podman[29679]: 2024-09-11 03:15:56.898233203 +0000 UTC m=+0.339106909 container init 92c594575e43c8946e7c7f5e5f17f7f1c3b785ec9ee7ca87baee5d67950b91a5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a, GIT_CLEAN=True, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS) 2024-09-11T03:15:56.925 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 podman[29679]: 2024-09-11 03:15:56.903065313 +0000 UTC m=+0.343939005 container start 92c594575e43c8946e7c7f5e5f17f7f1c3b785ec9ee7ca87baee5d67950b91a5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4) 2024-09-11T03:15:56.984 INFO:teuthology.orchestra.run.smithi050.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-11T03:15:57.212 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: set uid:gid to 167:167 (ceph:ceph) 2024-09-11T03:15:57.212 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: ceph version 19.3.0-4854-g8f219c47 (8f219c476cb4f26fc5719c661c0323719a45cb30) squid (dev), process ceph-mon, pid 7 2024-09-11T03:15:57.213 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: pidfile_write: ignore empty --pid-file 2024-09-11T03:15:57.213 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: load: jerasure load: lrc 2024-09-11T03:15:57.213 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: RocksDB version: 7.9.2 2024-09-11T03:15:57.213 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Git sha 0 2024-09-11T03:15:57.213 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Compile date 2024-09-10 08:02:51 2024-09-11T03:15:57.213 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: DB SUMMARY 2024-09-11T03:15:57.213 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: DB Session ID: GBFT1PMUKFWURXLT82JQ 2024-09-11T03:15:57.213 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: CURRENT file: CURRENT 2024-09-11T03:15:57.213 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: IDENTITY file: IDENTITY 2024-09-11T03:15:57.214 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-11T03:15:57.214 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-11T03:15:57.214 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 88824 ; 2024-09-11T03:15:57.214 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.error_if_exists: 0 2024-09-11T03:15:57.214 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.create_if_missing: 0 2024-09-11T03:15:57.214 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.paranoid_checks: 1 2024-09-11T03:15:57.214 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-11T03:15:57.214 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-11T03:15:57.214 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-11T03:15:57.214 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.env: 0x55d62f893180 2024-09-11T03:15:57.214 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.fs: PosixFileSystem 2024-09-11T03:15:57.215 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.info_log: 0x55d630add700 2024-09-11T03:15:57.215 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_file_opening_threads: 16 2024-09-11T03:15:57.215 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.statistics: (nil) 2024-09-11T03:15:57.215 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.use_fsync: 0 2024-09-11T03:15:57.215 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_log_file_size: 0 2024-09-11T03:15:57.215 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-11T03:15:57.215 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-11T03:15:57.215 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.keep_log_file_num: 1000 2024-09-11T03:15:57.215 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.recycle_log_file_num: 0 2024-09-11T03:15:57.215 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.allow_fallocate: 1 2024-09-11T03:15:57.216 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.allow_mmap_reads: 0 2024-09-11T03:15:57.216 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.allow_mmap_writes: 0 2024-09-11T03:15:57.216 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.use_direct_reads: 0 2024-09-11T03:15:57.216 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-11T03:15:57.216 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.create_missing_column_families: 0 2024-09-11T03:15:57.216 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.db_log_dir: 2024-09-11T03:15:57.216 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.wal_dir: 2024-09-11T03:15:57.216 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-11T03:15:57.216 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-11T03:15:57.216 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-11T03:15:57.216 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-11T03:15:57.217 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-11T03:15:57.217 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-11T03:15:57.217 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.advise_random_on_open: 1 2024-09-11T03:15:57.217 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.db_write_buffer_size: 0 2024-09-11T03:15:57.217 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.write_buffer_manager: 0x55d630ae1b80 2024-09-11T03:15:57.217 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-11T03:15:57.217 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-11T03:15:57.217 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-11T03:15:57.217 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.rate_limiter: (nil) 2024-09-11T03:15:57.217 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-11T03:15:57.217 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.wal_recovery_mode: 2 2024-09-11T03:15:57.218 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.enable_thread_tracking: 0 2024-09-11T03:15:57.218 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.enable_pipelined_write: 0 2024-09-11T03:15:57.218 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.unordered_write: 0 2024-09-11T03:15:57.218 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-11T03:15:57.218 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-11T03:15:57.218 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-11T03:15:57.218 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-11T03:15:57.218 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.row_cache: None 2024-09-11T03:15:57.218 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.wal_filter: None 2024-09-11T03:15:57.218 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-11T03:15:57.218 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.allow_ingest_behind: 0 2024-09-11T03:15:57.218 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.two_write_queues: 0 2024-09-11T03:15:57.219 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.manual_wal_flush: 0 2024-09-11T03:15:57.219 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.wal_compression: 0 2024-09-11T03:15:57.219 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.atomic_flush: 0 2024-09-11T03:15:57.219 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-11T03:15:57.219 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-11T03:15:57.219 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-11T03:15:57.219 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.log_readahead_size: 0 2024-09-11T03:15:57.219 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-11T03:15:57.219 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.best_efforts_recovery: 0 2024-09-11T03:15:57.219 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-11T03:15:57.219 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-11T03:15:57.219 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.allow_data_in_errors: 0 2024-09-11T03:15:57.220 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.db_host_id: __hostname__ 2024-09-11T03:15:57.220 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-11T03:15:57.221 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_background_jobs: 2 2024-09-11T03:15:57.221 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_background_compactions: -1 2024-09-11T03:15:57.221 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_subcompactions: 1 2024-09-11T03:15:57.221 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-11T03:15:57.221 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-11T03:15:57.221 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_total_wal_size: 0 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_open_files: -1 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.bytes_per_sync: 0 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compaction_readahead_size: 0 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_background_flushes: -1 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Compression algorithms supported: 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: kZSTD supported: 0 2024-09-11T03:15:57.222 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: kXpressCompression supported: 0 2024-09-11T03:15:57.223 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: kBZip2Compression supported: 0 2024-09-11T03:15:57.223 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-11T03:15:57.223 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: kLZ4Compression supported: 1 2024-09-11T03:15:57.223 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: kZlibCompression supported: 1 2024-09-11T03:15:57.223 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: kLZ4HCCompression supported: 1 2024-09-11T03:15:57.223 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: kSnappyCompression supported: 1 2024-09-11T03:15:57.223 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-11T03:15:57.223 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-11T03:15:57.223 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-09-11T03:15:57.223 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-11T03:15:57.223 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-11T03:15:57.223 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.merge_operator: 2024-09-11T03:15:57.223 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compaction_filter: None 2024-09-11T03:15:57.224 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compaction_filter_factory: None 2024-09-11T03:15:57.224 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.sst_partitioner_factory: None 2024-09-11T03:15:57.224 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-11T03:15:57.224 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-11T03:15:57.224 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55d630add320) 2024-09-11T03:15:57.224 INFO:journalctl@ceph.mon.a.smithi050.stdout: cache_index_and_filter_blocks: 1 2024-09-11T03:15:57.224 INFO:journalctl@ceph.mon.a.smithi050.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-11T03:15:57.224 INFO:journalctl@ceph.mon.a.smithi050.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-11T03:15:57.224 INFO:journalctl@ceph.mon.a.smithi050.stdout: pin_top_level_index_and_filter: 1 2024-09-11T03:15:57.224 INFO:journalctl@ceph.mon.a.smithi050.stdout: index_type: 0 2024-09-11T03:15:57.224 INFO:journalctl@ceph.mon.a.smithi050.stdout: data_block_index_type: 0 2024-09-11T03:15:57.224 INFO:journalctl@ceph.mon.a.smithi050.stdout: index_shortening: 1 2024-09-11T03:15:57.224 INFO:journalctl@ceph.mon.a.smithi050.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-11T03:15:57.225 INFO:journalctl@ceph.mon.a.smithi050.stdout: checksum: 4 2024-09-11T03:15:57.225 INFO:journalctl@ceph.mon.a.smithi050.stdout: no_block_cache: 0 2024-09-11T03:15:57.225 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_cache: 0x55d630ad1610 2024-09-11T03:15:57.225 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_cache_name: BinnedLRUCache 2024-09-11T03:15:57.225 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_cache_options: 2024-09-11T03:15:57.225 INFO:journalctl@ceph.mon.a.smithi050.stdout: capacity : 536870912 2024-09-11T03:15:57.225 INFO:journalctl@ceph.mon.a.smithi050.stdout: num_shard_bits : 4 2024-09-11T03:15:57.225 INFO:journalctl@ceph.mon.a.smithi050.stdout: strict_capacity_limit : 0 2024-09-11T03:15:57.225 INFO:journalctl@ceph.mon.a.smithi050.stdout: high_pri_pool_ratio: 0.000 2024-09-11T03:15:57.225 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_cache_compressed: (nil) 2024-09-11T03:15:57.225 INFO:journalctl@ceph.mon.a.smithi050.stdout: persistent_cache: (nil) 2024-09-11T03:15:57.225 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_size: 4096 2024-09-11T03:15:57.226 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_size_deviation: 10 2024-09-11T03:15:57.226 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_restart_interval: 16 2024-09-11T03:15:57.226 INFO:journalctl@ceph.mon.a.smithi050.stdout: index_block_restart_interval: 1 2024-09-11T03:15:57.226 INFO:journalctl@ceph.mon.a.smithi050.stdout: metadata_block_size: 4096 2024-09-11T03:15:57.226 INFO:journalctl@ceph.mon.a.smithi050.stdout: partition_filters: 0 2024-09-11T03:15:57.226 INFO:journalctl@ceph.mon.a.smithi050.stdout: use_delta_encoding: 1 2024-09-11T03:15:57.226 INFO:journalctl@ceph.mon.a.smithi050.stdout: filter_policy: bloomfilter 2024-09-11T03:15:57.226 INFO:journalctl@ceph.mon.a.smithi050.stdout: whole_key_filtering: 1 2024-09-11T03:15:57.226 INFO:journalctl@ceph.mon.a.smithi050.stdout: verify_compression: 0 2024-09-11T03:15:57.226 INFO:journalctl@ceph.mon.a.smithi050.stdout: read_amp_bytes_per_bit: 0 2024-09-11T03:15:57.226 INFO:journalctl@ceph.mon.a.smithi050.stdout: format_version: 5 2024-09-11T03:15:57.226 INFO:journalctl@ceph.mon.a.smithi050.stdout: enable_index_compression: 1 2024-09-11T03:15:57.226 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_align: 0 2024-09-11T03:15:57.227 INFO:journalctl@ceph.mon.a.smithi050.stdout: max_auto_readahead_size: 262144 2024-09-11T03:15:57.227 INFO:journalctl@ceph.mon.a.smithi050.stdout: prepopulate_block_cache: 0 2024-09-11T03:15:57.227 INFO:journalctl@ceph.mon.a.smithi050.stdout: initial_auto_readahead_size: 8192 2024-09-11T03:15:57.227 INFO:journalctl@ceph.mon.a.smithi050.stdout: num_file_reads_for_auto_readahead: 2 2024-09-11T03:15:57.227 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.write_buffer_size: 33554432 2024-09-11T03:15:57.227 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_write_buffer_number: 2 2024-09-11T03:15:57.227 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compression: NoCompression 2024-09-11T03:15:57.227 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.bottommost_compression: Disabled 2024-09-11T03:15:57.227 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.prefix_extractor: nullptr 2024-09-11T03:15:57.227 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-11T03:15:57.227 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.num_levels: 7 2024-09-11T03:15:57.228 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-11T03:15:57.228 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-11T03:15:57.228 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-11T03:15:57.228 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-11T03:15:57.228 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-11T03:15:57.228 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-11T03:15:57.228 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-11T03:15:57.228 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-11T03:15:57.228 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-11T03:15:57.228 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-11T03:15:57.228 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-11T03:15:57.228 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-11T03:15:57.229 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-11T03:15:57.229 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compression_opts.level: 32767 2024-09-11T03:15:57.229 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compression_opts.strategy: 0 2024-09-11T03:15:57.229 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-11T03:15:57.229 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-11T03:15:57.229 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-11T03:15:57.229 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-11T03:15:57.229 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compression_opts.enabled: false 2024-09-11T03:15:57.229 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-11T03:15:57.229 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-11T03:15:57.229 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-11T03:15:57.229 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-11T03:15:57.229 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.target_file_size_base: 67108864 2024-09-11T03:15:57.230 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-11T03:15:57.230 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-11T03:15:57.230 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-11T03:15:57.230 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-11T03:15:57.230 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-11T03:15:57.230 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-11T03:15:57.230 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-11T03:15:57.230 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-11T03:15:57.230 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-11T03:15:57.230 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-11T03:15:57.230 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-11T03:15:57.230 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-11T03:15:57.230 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.arena_block_size: 1048576 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.disable_auto_compactions: 0 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-11T03:15:57.231 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-11T03:15:57.232 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-11T03:15:57.232 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-11T03:15:57.232 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.inplace_update_support: 0 2024-09-11T03:15:57.232 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-11T03:15:57.232 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-11T03:15:57.232 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-11T03:15:57.232 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-11T03:15:57.232 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.bloom_locality: 0 2024-09-11T03:15:57.232 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.max_successive_merges: 0 2024-09-11T03:15:57.232 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-11T03:15:57.232 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.paranoid_file_checks: 0 2024-09-11T03:15:57.232 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.force_consistency_checks: 1 2024-09-11T03:15:57.232 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.report_bg_io_stats: 0 2024-09-11T03:15:57.233 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.ttl: 2592000 2024-09-11T03:15:57.233 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-11T03:15:57.233 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-11T03:15:57.233 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-11T03:15:57.233 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.enable_blob_files: false 2024-09-11T03:15:57.233 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.min_blob_size: 0 2024-09-11T03:15:57.233 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.blob_file_size: 268435456 2024-09-11T03:15:57.233 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-11T03:15:57.233 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-11T03:15:57.233 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-11T03:15:57.233 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-11T03:15:57.233 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-11T03:15:57.234 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.blob_file_starting_level: 0 2024-09-11T03:15:57.234 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-11T03:15:57.234 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-09-11T03:15:57.234 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-11T03:15:57.234 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: f37d8820-a42d-48f2-b3e0-0e662f872764 2024-09-11T03:15:57.234 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726024556931317, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-11T03:15:57.234 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-11T03:15:57.234 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726024556932329, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85569, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 259, "table_properties": {"data_size": 83716, "index_size": 237, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 10145, "raw_average_key_size": 46, "raw_value_size": 77856, "raw_average_value_size": 357, "num_data_blocks": 11, "num_entries": 218, "num_filter_entries": 218, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726024556, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "f37d8820-a42d-48f2-b3e0-0e662f872764", "db_session_id": "GBFT1PMUKFWURXLT82JQ", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-11T03:15:57.234 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726024556932439, "job": 1, "event": "recovery_finished"} 2024-09-11T03:15:57.234 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-11T03:15:57.234 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-11T03:15:57.235 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55d630b00e00 2024-09-11T03:15:57.235 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: DB pointer 0x55d630c02000 2024-09-11T03:15:57.235 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-11T03:15:57.235 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-11T03:15:57.235 INFO:journalctl@ceph.mon.a.smithi050.stdout: ** DB Stats ** 2024-09-11T03:15:57.235 INFO:journalctl@ceph.mon.a.smithi050.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T03:15:57.235 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-09-11T03:15:57.235 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-09-11T03:15:57.235 INFO:journalctl@ceph.mon.a.smithi050.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-11T03:15:57.235 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-09-11T03:15:57.235 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-09-11T03:15:57.235 INFO:journalctl@ceph.mon.a.smithi050.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-11T03:15:57.235 INFO:journalctl@ceph.mon.a.smithi050.stdout: 2024-09-11T03:15:57.236 INFO:journalctl@ceph.mon.a.smithi050.stdout: ** Compaction Stats [default] ** 2024-09-11T03:15:57.236 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-09-11T03:15:57.236 INFO:journalctl@ceph.mon.a.smithi050.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-11T03:15:57.236 INFO:journalctl@ceph.mon.a.smithi050.stdout: L0 2/0 85.42 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 121.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-11T03:15:57.236 INFO:journalctl@ceph.mon.a.smithi050.stdout: Sum 2/0 85.42 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 121.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-11T03:15:57.236 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 121.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-11T03:15:57.236 INFO:journalctl@ceph.mon.a.smithi050.stdout: 2024-09-11T03:15:57.236 INFO:journalctl@ceph.mon.a.smithi050.stdout: ** Compaction Stats [default] ** 2024-09-11T03:15:57.236 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-09-11T03:15:57.236 INFO:journalctl@ceph.mon.a.smithi050.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T03:15:57.236 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 121.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-11T03:15:57.236 INFO:journalctl@ceph.mon.a.smithi050.stdout: 2024-09-11T03:15:57.237 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-09-11T03:15:57.237 INFO:journalctl@ceph.mon.a.smithi050.stdout: 2024-09-11T03:15:57.237 INFO:journalctl@ceph.mon.a.smithi050.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T03:15:57.237 INFO:journalctl@ceph.mon.a.smithi050.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-11T03:15:57.237 INFO:journalctl@ceph.mon.a.smithi050.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-11T03:15:57.237 INFO:journalctl@ceph.mon.a.smithi050.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-11T03:15:57.237 INFO:journalctl@ceph.mon.a.smithi050.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-11T03:15:57.237 INFO:journalctl@ceph.mon.a.smithi050.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-11T03:15:57.237 INFO:journalctl@ceph.mon.a.smithi050.stdout: Cumulative compaction: 0.00 GB write, 23.18 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T03:15:57.237 INFO:journalctl@ceph.mon.a.smithi050.stdout: Interval compaction: 0.00 GB write, 23.18 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T03:15:57.237 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-09-11T03:15:57.237 INFO:journalctl@ceph.mon.a.smithi050.stdout: Block cache BinnedLRUCache@0x55d630ad1610#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2024-09-11T03:15:57.237 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-09-11T03:15:57.237 INFO:journalctl@ceph.mon.a.smithi050.stdout: 2024-09-11T03:15:57.238 INFO:journalctl@ceph.mon.a.smithi050.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-11T03:15:57.238 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: 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 ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:15:57.238 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: mon.a@-1(???) e1 preinit fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:15:57.238 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: mon.a@-1(???).mds e1 new map 2024-09-11T03:15:57.238 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: mon.a@-1(???).mds e1 print_map 2024-09-11T03:15:57.238 INFO:journalctl@ceph.mon.a.smithi050.stdout: e1 2024-09-11T03:15:57.238 INFO:journalctl@ceph.mon.a.smithi050.stdout: btime 2024-09-11T03:15:41:838193+0000 2024-09-11T03:15:57.238 INFO:journalctl@ceph.mon.a.smithi050.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-11T03:15:57.238 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-09-11T03:15:57.238 INFO:journalctl@ceph.mon.a.smithi050.stdout: legacy client fscid: -1 2024-09-11T03:15:57.238 INFO:journalctl@ceph.mon.a.smithi050.stdout: 2024-09-11T03:15:57.239 INFO:journalctl@ceph.mon.a.smithi050.stdout: No filesystems configured 2024-09-11T03:15:57.239 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-11T03:15:57.239 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T03:15:57.239 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T03:15:57.239 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T03:15:57.239 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-11T03:15:57.239 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 bash[29679]: 92c594575e43c8946e7c7f5e5f17f7f1c3b785ec9ee7ca87baee5d67950b91a5 2024-09-11T03:15:57.239 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 systemd[1]: Started Ceph mon.a for ff8a8a62-6feb-11ef-bcea-c7b262605968. 2024-09-11T03:15:57.239 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-11T03:15:57.239 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: monmap epoch 1 2024-09-11T03:15:57.239 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:15:57.239 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: last_changed 2024-09-11T03:15:38.656471+0000 2024-09-11T03:15:57.240 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: created 2024-09-11T03:15:38.656471+0000 2024-09-11T03:15:57.240 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: min_mon_release 19 (squid) 2024-09-11T03:15:57.240 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: election_strategy: 1 2024-09-11T03:15:57.240 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-09-11T03:15:57.240 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: fsmap 2024-09-11T03:15:57.240 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: osdmap e1: 0 total, 0 up, 0 in 2024-09-11T03:15:57.240 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:56 smithi050 ceph-mon[29717]: mgrmap e1: no daemons active 2024-09-11T03:15:58.073 INFO:teuthology.orchestra.run.smithi050.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-11T03:15:58.095 INFO:teuthology.orchestra.run.smithi050.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-11T03:15:58.095 INFO:teuthology.orchestra.run.smithi050.stdout:Creating mgr... 2024-09-11T03:15:58.095 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-11T03:15:58.096 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-11T03:15:58.366 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mgr.a 2024-09-11T03:15:58.366 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to reset failed state of unit ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mgr.a.service: Unit ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mgr.a.service not loaded. 2024-09-11T03:15:58.532 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968.target.wants/ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mgr.a.service → /etc/systemd/system/ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@.service. 2024-09-11T03:15:58.866 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:58 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3588070414' entity='client.admin' 2024-09-11T03:15:58.866 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:15:58 smithi050 podman[29955]: 2024-09-11 03:15:58.670727338 +0000 UTC m=+0.016093871 image pull 589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 2024-09-11T03:15:59.056 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-11T03:15:59.056 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout disabled 2024-09-11T03:15:59.064 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-11T03:15:59.064 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-11T03:15:59.064 INFO:teuthology.orchestra.run.smithi050.stdout:firewalld.service is not enabled 2024-09-11T03:15:59.064 INFO:teuthology.orchestra.run.smithi050.stdout:Not possible to enable service . firewalld.service is not available 2024-09-11T03:15:59.073 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-11T03:15:59.074 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout disabled 2024-09-11T03:15:59.082 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-11T03:15:59.082 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-11T03:15:59.082 INFO:teuthology.orchestra.run.smithi050.stdout:firewalld.service is not enabled 2024-09-11T03:15:59.083 INFO:teuthology.orchestra.run.smithi050.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-11T03:15:59.083 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mgr to start... 2024-09-11T03:15:59.083 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mgr... 2024-09-11T03:15:59.293 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:15:58 smithi050 podman[29955]: 2024-09-11 03:15:58.967570588 +0000 UTC m=+0.312937123 container init a1cc605444d156219be384072719eb92ff7df59e8f28e45a76fb9222c349a134 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a, ceph=True, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS) 2024-09-11T03:15:59.293 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:15:58 smithi050 podman[29955]: 2024-09-11 03:15:58.97249552 +0000 UTC m=+0.317862052 container start a1cc605444d156219be384072719eb92ff7df59e8f28e45a76fb9222c349a134 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a, GIT_CLEAN=True, maintainer=Guillaume Abrioux , ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-11T03:15:59.294 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:15:59 smithi050 bash[29955]: a1cc605444d156219be384072719eb92ff7df59e8f28e45a76fb9222c349a134 2024-09-11T03:15:59.294 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:15:59 smithi050 systemd[1]: Started Ceph mgr.a for ff8a8a62-6feb-11ef-bcea-c7b262605968. 2024-09-11T03:15:59.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:15:59 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3680974896' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-11T03:16:00.153 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-11T03:16:00.153 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-11T03:16:00.153 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsid": "ff8a8a62-6feb-11ef-bcea-c7b262605968", 2024-09-11T03:16:00.153 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "health": { 2024-09-11T03:16:00.153 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-11T03:16:00.153 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-11T03:16:00.153 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-11T03:16:00.153 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:00.153 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-11T03:16:00.153 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-11T03:16:00.154 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 0 2024-09-11T03:16:00.154 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-11T03:16:00.154 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-11T03:16:00.154 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "a" 2024-09-11T03:16:00.154 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-11T03:16:00.154 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-09-11T03:16:00.154 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-11T03:16:00.154 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T03:16:00.154 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-11T03:16:00.154 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-11T03:16:00.154 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:00.154 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-11T03:16:00.154 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T03:16:00.155 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-11T03:16:00.155 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-11T03:16:00.155 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-11T03:16:00.159 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-11T03:16:00.159 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-11T03:16:00.159 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-11T03:16:00.159 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:00.159 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-11T03:16:00.159 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-11T03:16:00.159 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-11T03:16:00.159 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-11T03:16:00.159 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-11T03:16:00.159 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-11T03:16:00.160 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-11T03:16:00.160 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-11T03:16:00.160 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-11T03:16:00.160 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:00.160 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-11T03:16:00.160 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T03:16:00.160 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "btime": "2024-09-11T03:15:41:838193+0000", 2024-09-11T03:16:00.160 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-11T03:16:00.160 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-11T03:16:00.160 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:00.160 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-11T03:16:00.160 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-11T03:16:00.160 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-11T03:16:00.161 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-11T03:16:00.161 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-11T03:16:00.161 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-11T03:16:00.161 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "restful" 2024-09-11T03:16:00.161 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-11T03:16:00.161 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T03:16:00.161 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:00.161 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-11T03:16:00.161 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T03:16:00.161 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modified": "2024-09-11T03:15:41.838835+0000", 2024-09-11T03:16:00.161 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T03:16:00.161 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:00.161 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-11T03:16:00.162 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-11T03:16:00.162 INFO:teuthology.orchestra.run.smithi050.stdout:mgr not available, waiting (1/15)... 2024-09-11T03:16:03.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:03 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1432655264' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-11T03:16:03.969 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-11T03:16:03.969 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-11T03:16:03.969 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsid": "ff8a8a62-6feb-11ef-bcea-c7b262605968", 2024-09-11T03:16:03.970 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "health": { 2024-09-11T03:16:03.970 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-11T03:16:03.970 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-11T03:16:03.970 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-11T03:16:03.970 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:03.970 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-11T03:16:03.970 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-11T03:16:03.970 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 0 2024-09-11T03:16:03.970 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-11T03:16:03.970 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-11T03:16:03.970 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "a" 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-11T03:16:03.971 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-11T03:16:03.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-11T03:16:03.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:03.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-11T03:16:03.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-11T03:16:03.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-11T03:16:03.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-11T03:16:03.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-11T03:16:03.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-11T03:16:03.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-11T03:16:03.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-11T03:16:03.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-11T03:16:03.972 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:03.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-11T03:16:03.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T03:16:03.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "btime": "2024-09-11T03:15:41:838193+0000", 2024-09-11T03:16:03.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-11T03:16:03.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-11T03:16:03.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:03.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-11T03:16:03.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-11T03:16:03.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-11T03:16:03.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-11T03:16:03.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-11T03:16:03.973 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-11T03:16:03.974 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "restful" 2024-09-11T03:16:03.974 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-11T03:16:03.974 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T03:16:03.974 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:03.974 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-11T03:16:03.974 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T03:16:03.974 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modified": "2024-09-11T03:15:41.838835+0000", 2024-09-11T03:16:03.974 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T03:16:03.974 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:03.974 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-11T03:16:03.974 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-11T03:16:03.974 INFO:teuthology.orchestra.run.smithi050.stdout:mgr not available, waiting (2/15)... 2024-09-11T03:16:04.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:04 smithi050 ceph-mon[29717]: Activating manager daemon a 2024-09-11T03:16:04.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:04 smithi050 ceph-mon[29717]: mgrmap e2: a(active, starting, since 0.00333419s) 2024-09-11T03:16:04.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:04 smithi050 ceph-mon[29717]: from='mgr.14100 172.21.15.50:0/1990219618' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-11T03:16:04.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:04 smithi050 ceph-mon[29717]: from='mgr.14100 172.21.15.50:0/1990219618' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-11T03:16:04.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:04 smithi050 ceph-mon[29717]: from='mgr.14100 172.21.15.50:0/1990219618' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-11T03:16:04.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:04 smithi050 ceph-mon[29717]: from='mgr.14100 172.21.15.50:0/1990219618' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:16:04.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:04 smithi050 ceph-mon[29717]: from='mgr.14100 172.21.15.50:0/1990219618' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-11T03:16:04.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:04 smithi050 ceph-mon[29717]: Manager daemon a is now available 2024-09-11T03:16:04.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:04 smithi050 ceph-mon[29717]: from='mgr.14100 172.21.15.50:0/1990219618' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-11T03:16:04.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:04 smithi050 ceph-mon[29717]: from='mgr.14100 172.21.15.50:0/1990219618' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-11T03:16:04.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:04 smithi050 ceph-mon[29717]: from='mgr.14100 172.21.15.50:0/1990219618' entity='mgr.a' 2024-09-11T03:16:04.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:04 smithi050 ceph-mon[29717]: from='mgr.14100 172.21.15.50:0/1990219618' entity='mgr.a' 2024-09-11T03:16:04.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:04 smithi050 ceph-mon[29717]: from='mgr.14100 172.21.15.50:0/1990219618' entity='mgr.a' 2024-09-11T03:16:06.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:06 smithi050 ceph-mon[29717]: mgrmap e3: a(active, since 1.00785s) 2024-09-11T03:16:07.255 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-11T03:16:07.255 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-11T03:16:07.255 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsid": "ff8a8a62-6feb-11ef-bcea-c7b262605968", 2024-09-11T03:16:07.255 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "health": { 2024-09-11T03:16:07.255 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-11T03:16:07.255 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-11T03:16:07.255 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-11T03:16:07.255 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:07.256 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-11T03:16:07.256 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-11T03:16:07.256 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 0 2024-09-11T03:16:07.256 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-11T03:16:07.256 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-11T03:16:07.256 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "a" 2024-09-11T03:16:07.256 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-11T03:16:07.256 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_age": 9, 2024-09-11T03:16:07.256 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-11T03:16:07.256 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T03:16:07.256 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-11T03:16:07.256 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-11T03:16:07.257 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:07.257 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-11T03:16:07.257 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T03:16:07.257 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-11T03:16:07.257 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-11T03:16:07.257 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-11T03:16:07.257 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-11T03:16:07.257 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-11T03:16:07.257 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-11T03:16:07.260 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:07.260 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-11T03:16:07.260 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-11T03:16:07.260 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-11T03:16:07.260 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-11T03:16:07.261 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-11T03:16:07.261 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-11T03:16:07.261 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-11T03:16:07.261 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-11T03:16:07.261 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-11T03:16:07.261 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:07.261 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-11T03:16:07.261 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T03:16:07.261 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "btime": "2024-09-11T03:15:41:838193+0000", 2024-09-11T03:16:07.261 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-11T03:16:07.261 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-11T03:16:07.261 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "restful" 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modified": "2024-09-11T03:15:41.838835+0000", 2024-09-11T03:16:07.262 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T03:16:07.263 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-11T03:16:07.263 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-11T03:16:07.263 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-11T03:16:07.263 INFO:teuthology.orchestra.run.smithi050.stdout:mgr is available 2024-09-11T03:16:07.520 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:07 smithi050 ceph-mon[29717]: mgrmap e4: a(active, since 2s) 2024-09-11T03:16:07.520 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:07 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/76207091' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-11T03:16:08.515 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:08 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1021945179' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-11T03:16:08.515 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:08 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1021945179' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-11T03:16:08.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-11T03:16:08.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [global] 2024-09-11T03:16:08.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout fsid = ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:16:08.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-11T03:16:08.519 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-09-11T03:16:08.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-11T03:16:08.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-11T03:16:08.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-11T03:16:08.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-11T03:16:08.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-11T03:16:08.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-11T03:16:08.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-11T03:16:08.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-11T03:16:08.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [osd] 2024-09-11T03:16:08.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-11T03:16:08.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-11T03:16:08.520 INFO:teuthology.orchestra.run.smithi050.stdout:Enabling cephadm module... 2024-09-11T03:16:09.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:09 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3796989375' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-11T03:16:09.628 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:09 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: ignoring --setuser ceph since I am not root 2024-09-11T03:16:09.628 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:09 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: ignoring --setgroup ceph since I am not root 2024-09-11T03:16:10.558 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:10 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3796989375' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-11T03:16:10.558 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:10 smithi050 ceph-mon[29717]: mgrmap e5: a(active, since 5s) 2024-09-11T03:16:11.495 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:11 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1968926805' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-11T03:16:11.499 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-11T03:16:11.499 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-11T03:16:11.499 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-11T03:16:11.499 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-11T03:16:11.499 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-11T03:16:11.499 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-11T03:16:11.499 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for the mgr to restart... 2024-09-11T03:16:11.499 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mgr epoch 5... 2024-09-11T03:16:15.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:14 smithi050 ceph-mon[29717]: Active manager daemon a restarted 2024-09-11T03:16:15.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:14 smithi050 ceph-mon[29717]: Activating manager daemon a 2024-09-11T03:16:15.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:14 smithi050 ceph-mon[29717]: osdmap e2: 0 total, 0 up, 0 in 2024-09-11T03:16:15.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:14 smithi050 ceph-mon[29717]: mgrmap e6: a(active, starting, since 0.0035472s) 2024-09-11T03:16:15.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:14 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:16:15.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:14 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-11T03:16:15.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:14 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-11T03:16:15.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:14 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-11T03:16:15.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:14 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-11T03:16:15.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:14 smithi050 ceph-mon[29717]: Manager daemon a is now available 2024-09-11T03:16:16.087 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-11T03:16:16.088 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-11T03:16:16.088 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-11T03:16:16.088 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-11T03:16:16.088 INFO:teuthology.orchestra.run.smithi050.stdout:mgr epoch 5 is available 2024-09-11T03:16:16.088 INFO:teuthology.orchestra.run.smithi050.stdout:Setting orchestrator backend to cephadm... 2024-09-11T03:16:16.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:16 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:16.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:16 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:16.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:16 smithi050 ceph-mon[29717]: Found migration_current of "None". Setting to last migration. 2024-09-11T03:16:16.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:16 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:16.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:16 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:16.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:16 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:16.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:16 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:16:16.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:16 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:16:16.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:16 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-11T03:16:16.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:16 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-11T03:16:16.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:16 smithi050 ceph-mon[29717]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-11T03:16:16.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:16 smithi050 ceph-mon[29717]: mgrmap e7: a(active, since 1.00623s) 2024-09-11T03:16:16.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:16 smithi050 ceph-mon[29717]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-11T03:16:17.564 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: 2024-09-11T03:16:17.451+0000 7efde1c95640 -1 log_channel(cephadm) log [ERR] : [11/Sep/2024:03:16:17] ENGINE Error in HTTPServer.serve 2024-09-11T03:16:17.565 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: Traceback (most recent call last): 2024-09-11T03:16:17.565 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-11T03:16:17.565 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: self._connections.run(self.expiration_interval) 2024-09-11T03:16:17.565 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-11T03:16:17.565 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: self._run(expiration_interval) 2024-09-11T03:16:17.565 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-11T03:16:17.565 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: new_conn = self._from_server_socket(self.server.socket) 2024-09-11T03:16:17.565 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-11T03:16:17.565 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-11T03:16:17.565 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-11T03:16:17.565 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: s = self.context.wrap_socket( 2024-09-11T03:16:17.566 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-11T03:16:17.566 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: return self.sslsocket_class._create( 2024-09-11T03:16:17.566 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-11T03:16:17.566 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: self.do_handshake() 2024-09-11T03:16:17.566 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-11T03:16:17.566 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: self._sslobj.do_handshake() 2024-09-11T03:16:17.566 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-11T03:16:17.566 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: 2024-09-11T03:16:17.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-mon[29717]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:16:17.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:17.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:16:17.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-mon[29717]: [11/Sep/2024:03:16:17] ENGINE Bus STARTING 2024-09-11T03:16:17.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-mon[29717]: [11/Sep/2024:03:16:17] ENGINE Serving on http://172.21.15.50:8765 2024-09-11T03:16:17.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-mon[29717]: mgrmap e8: a(active, since 2s) 2024-09-11T03:16:17.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:17 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:16:18.510 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-11T03:16:18.510 INFO:teuthology.orchestra.run.smithi050.stdout:Generating ssh key... 2024-09-11T03:16:18.763 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:18 smithi050 ceph-mon[29717]: [11/Sep/2024:03:16:17] ENGINE Serving on https://172.21.15.50:7150 2024-09-11T03:16:18.763 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:18 smithi050 ceph-mon[29717]: [11/Sep/2024:03:16:17] ENGINE Bus STARTED 2024-09-11T03:16:18.763 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:18 smithi050 ceph-mon[29717]: [11/Sep/2024:03:16:17] ENGINE Error in HTTPServer.serve 2024-09-11T03:16:18.764 INFO:journalctl@ceph.mon.a.smithi050.stdout: Traceback (most recent call last): 2024-09-11T03:16:18.764 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-11T03:16:18.764 INFO:journalctl@ceph.mon.a.smithi050.stdout: self._connections.run(self.expiration_interval) 2024-09-11T03:16:18.764 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-11T03:16:18.764 INFO:journalctl@ceph.mon.a.smithi050.stdout: self._run(expiration_interval) 2024-09-11T03:16:18.765 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-11T03:16:18.765 INFO:journalctl@ceph.mon.a.smithi050.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-11T03:16:18.765 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-11T03:16:18.765 INFO:journalctl@ceph.mon.a.smithi050.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-11T03:16:18.765 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-11T03:16:18.765 INFO:journalctl@ceph.mon.a.smithi050.stdout: s = self.context.wrap_socket( 2024-09-11T03:16:18.766 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-11T03:16:18.766 INFO:journalctl@ceph.mon.a.smithi050.stdout: return self.sslsocket_class._create( 2024-09-11T03:16:18.766 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-11T03:16:18.766 INFO:journalctl@ceph.mon.a.smithi050.stdout: self.do_handshake() 2024-09-11T03:16:18.766 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-11T03:16:18.767 INFO:journalctl@ceph.mon.a.smithi050.stdout: self._sslobj.do_handshake() 2024-09-11T03:16:18.767 INFO:journalctl@ceph.mon.a.smithi050.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-11T03:16:18.767 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:18 smithi050 ceph-mon[29717]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:16:19.555 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: Generating public/private rsa key pair. 2024-09-11T03:16:19.555 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: Your identification has been saved in /tmp/tmpxx771az0/key 2024-09-11T03:16:19.555 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: Your public key has been saved in /tmp/tmpxx771az0/key.pub 2024-09-11T03:16:19.555 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: The key fingerprint is: 2024-09-11T03:16:19.555 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: SHA256:Ki+cm1+jhDururxEWbXITn1NrSiPkanxBYx/yQkXZHg ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:16:19.555 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: The key's randomart image is: 2024-09-11T03:16:19.555 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: +---[RSA 3072]----+ 2024-09-11T03:16:19.556 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: | o.o+... | 2024-09-11T03:16:19.556 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: | ..+=oEo . | 2024-09-11T03:16:19.556 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: | =.oO.+.. | 2024-09-11T03:16:19.556 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: | =. *.B . | 2024-09-11T03:16:19.556 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: | o .+ B S | 2024-09-11T03:16:19.556 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: |. . + o | 2024-09-11T03:16:19.556 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: | . .o.o o | 2024-09-11T03:16:19.556 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: |o =* o . | 2024-09-11T03:16:19.556 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: |o=o.=*+ | 2024-09-11T03:16:19.556 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:19 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: +----[SHA256]-----+ 2024-09-11T03:16:20.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:20 smithi050 ceph-mon[29717]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:16:20.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:20 smithi050 ceph-mon[29717]: Generating ssh key... 2024-09-11T03:16:20.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:20 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:20.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:20 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:21.131 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDHPFS+SFPvG9bh3yZK9xWbtVEM6kWiRa7sbvR4UCpFTdhSdU4Hup/pGrDFUGpFEX+ePRok2hoGkBGZ+i7i1RF4Za9fJFg/s8bLd+U0qotBIU3NYdUWPpJCWNwlsJ++qhHv4Q484/aV17xR1tJDL0aNnMQFBVb8qwaeNSCsTbsX2cURRtXjkSxxUPrP36l65dtFnNrFdsU6/U3DlwchugqnxvitCSKzW8kgI9nLZ8+un0avnOX32D6Hpb+yIY0kBKo7b2iTR/W4EMYfva3DFO2pavIUepdn1KTS163OJF8MVlAhWbSFbxRcJdV8icGMqrKbds1I+UPu5p7ZQq6vUjcQAA8Y3pxIrykdT4P77md8Ib2AE0zk8J/LJxPw7UCfP2fMmToCs8ua0RWuwuBl+OTwoSDXOe06sIh1n809v1TZ3XHATysyVXEH5hhatIEBj3O+g5uJ0ZGzeZBT0YYJLyO8WkrFDLxaLAtwsZcWnBOySzWJ66FkiPdPp0xxeo0iIE8= ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:16:21.131 INFO:teuthology.orchestra.run.smithi050.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-11T03:16:21.131 INFO:teuthology.orchestra.run.smithi050.stdout:Adding key to root@localhost authorized_keys... 2024-09-11T03:16:21.140 INFO:teuthology.orchestra.run.smithi050.stdout:Adding host smithi050... 2024-09-11T03:16:21.564 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:21 smithi050 ceph-mon[29717]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:16:22.457 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:22 smithi050 ceph-mon[29717]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi050", "addr": "172.21.15.50", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:16:23.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:23 smithi050 ceph-mon[29717]: Deploying cephadm binary to smithi050 2024-09-11T03:16:26.239 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Added host 'smithi050' with addr '172.21.15.50' 2024-09-11T03:16:26.239 INFO:teuthology.orchestra.run.smithi050.stdout:Deploying unmanaged mon service... 2024-09-11T03:16:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:26 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:26 smithi050 ceph-mon[29717]: Added host smithi050 2024-09-11T03:16:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:26 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:16:27.640 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-11T03:16:27.640 INFO:teuthology.orchestra.run.smithi050.stdout:Deploying unmanaged mgr service... 2024-09-11T03:16:28.241 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:27 smithi050 ceph-mon[29717]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:16:28.242 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:27 smithi050 ceph-mon[29717]: Saving service mon spec with placement count:5 2024-09-11T03:16:28.242 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:27 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:29.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:29 smithi050 ceph-mon[29717]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:16:29.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:29 smithi050 ceph-mon[29717]: Saving service mgr spec with placement count:2 2024-09-11T03:16:29.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:29 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:29.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:29 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:29.694 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-11T03:16:31.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:30 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:31.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:30 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1844789196' entity='client.admin' 2024-09-11T03:16:32.395 INFO:teuthology.orchestra.run.smithi050.stdout:Enabling the dashboard module... 2024-09-11T03:16:33.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:32 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3592277840' entity='client.admin' 2024-09-11T03:16:33.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:32 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:33.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:32 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:33.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:32 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi050", "name": "osd_memory_target"} : dispatch 2024-09-11T03:16:33.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:32 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' 2024-09-11T03:16:33.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:32 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "client.agent.smithi050", "caps": []} : dispatch 2024-09-11T03:16:33.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:32 smithi050 ceph-mon[29717]: from='mgr.14118 172.21.15.50:0/1165127248' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi050", "caps": []}]': finished 2024-09-11T03:16:34.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:33 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/2303350861' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-11T03:16:34.092 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:33 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: ignoring --setuser ceph since I am not root 2024-09-11T03:16:34.092 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:33 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: ignoring --setgroup ceph since I am not root 2024-09-11T03:16:35.076 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:34 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/2303350861' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-11T03:16:35.076 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:34 smithi050 ceph-mon[29717]: mgrmap e9: a(active, since 19s) 2024-09-11T03:16:35.635 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-11T03:16:35.635 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-11T03:16:35.635 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-11T03:16:35.636 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-11T03:16:35.636 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-11T03:16:35.636 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-11T03:16:35.636 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for the mgr to restart... 2024-09-11T03:16:35.636 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mgr epoch 9... 2024-09-11T03:16:35.890 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:35 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/651240601' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-11T03:16:39.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:39 smithi050 ceph-mon[29717]: Active manager daemon a restarted 2024-09-11T03:16:39.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:39 smithi050 ceph-mon[29717]: Activating manager daemon a 2024-09-11T03:16:39.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:39 smithi050 ceph-mon[29717]: osdmap e3: 0 total, 0 up, 0 in 2024-09-11T03:16:39.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:39 smithi050 ceph-mon[29717]: mgrmap e10: a(active, starting, since 0.00344574s) 2024-09-11T03:16:39.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:39 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:16:39.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:39 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-11T03:16:39.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:39 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-11T03:16:39.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:39 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-11T03:16:39.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:39 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-11T03:16:39.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:39 smithi050 ceph-mon[29717]: Manager daemon a is now available 2024-09-11T03:16:40.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:40.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:16:40.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-11T03:16:40.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-11T03:16:40.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:40 smithi050 ceph-mon[29717]: mgrmap e11: a(active, since 1.00628s) 2024-09-11T03:16:40.656 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-11T03:16:40.656 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-11T03:16:40.656 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-11T03:16:40.656 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-11T03:16:40.656 INFO:teuthology.orchestra.run.smithi050.stdout:mgr epoch 9 is available 2024-09-11T03:16:40.656 INFO:teuthology.orchestra.run.smithi050.stdout:Using certmgr to generate dashboard self-signed certificate... 2024-09-11T03:16:41.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-mon[29717]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-11T03:16:41.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-mon[29717]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-11T03:16:41.879 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: 2024-09-11T03:16:41.629+0000 7f3e04918640 -1 log_channel(cephadm) log [ERR] : [11/Sep/2024:03:16:41] ENGINE Error in HTTPServer.serve 2024-09-11T03:16:41.879 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: Traceback (most recent call last): 2024-09-11T03:16:41.879 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-11T03:16:41.879 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: self._connections.run(self.expiration_interval) 2024-09-11T03:16:41.879 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-11T03:16:41.879 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: self._run(expiration_interval) 2024-09-11T03:16:41.879 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-11T03:16:41.879 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: new_conn = self._from_server_socket(self.server.socket) 2024-09-11T03:16:41.879 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-11T03:16:41.879 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-11T03:16:41.880 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-11T03:16:41.880 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: s = self.context.wrap_socket( 2024-09-11T03:16:41.880 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-11T03:16:41.880 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: return self.sslsocket_class._create( 2024-09-11T03:16:41.880 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-11T03:16:41.880 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: self.do_handshake() 2024-09-11T03:16:41.881 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-11T03:16:41.881 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: self._sslobj.do_handshake() 2024-09-11T03:16:41.881 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-11T03:16:41.881 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:16:41 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a[29970]: 2024-09-11T03:16:42.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:42 smithi050 ceph-mon[29717]: [11/Sep/2024:03:16:41] ENGINE Bus STARTING 2024-09-11T03:16:42.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:42 smithi050 ceph-mon[29717]: mgrmap e12: a(active, since 2s) 2024-09-11T03:16:42.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:42 smithi050 ceph-mon[29717]: [11/Sep/2024:03:16:41] ENGINE Serving on http://172.21.15.50:8765 2024-09-11T03:16:42.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:42 smithi050 ceph-mon[29717]: [11/Sep/2024:03:16:41] ENGINE Serving on https://172.21.15.50:7150 2024-09-11T03:16:42.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:42 smithi050 ceph-mon[29717]: [11/Sep/2024:03:16:41] ENGINE Bus STARTED 2024-09-11T03:16:42.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:42 smithi050 ceph-mon[29717]: [11/Sep/2024:03:16:41] ENGINE Error in HTTPServer.serve 2024-09-11T03:16:42.628 INFO:journalctl@ceph.mon.a.smithi050.stdout: Traceback (most recent call last): 2024-09-11T03:16:42.628 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-11T03:16:42.629 INFO:journalctl@ceph.mon.a.smithi050.stdout: self._connections.run(self.expiration_interval) 2024-09-11T03:16:42.629 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-11T03:16:42.629 INFO:journalctl@ceph.mon.a.smithi050.stdout: self._run(expiration_interval) 2024-09-11T03:16:42.629 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-11T03:16:42.629 INFO:journalctl@ceph.mon.a.smithi050.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-11T03:16:42.629 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-11T03:16:42.629 INFO:journalctl@ceph.mon.a.smithi050.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-11T03:16:42.629 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-11T03:16:42.629 INFO:journalctl@ceph.mon.a.smithi050.stdout: s = self.context.wrap_socket( 2024-09-11T03:16:42.629 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-11T03:16:42.629 INFO:journalctl@ceph.mon.a.smithi050.stdout: return self.sslsocket_class._create( 2024-09-11T03:16:42.629 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-11T03:16:42.629 INFO:journalctl@ceph.mon.a.smithi050.stdout: self.do_handshake() 2024-09-11T03:16:42.630 INFO:journalctl@ceph.mon.a.smithi050.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-11T03:16:42.630 INFO:journalctl@ceph.mon.a.smithi050.stdout: self._sslobj.do_handshake() 2024-09-11T03:16:42.630 INFO:journalctl@ceph.mon.a.smithi050.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-11T03:16:42.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:42 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:42.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:42 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi050", "name": "osd_memory_target"} : dispatch 2024-09-11T03:16:42.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:42 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:42.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:42 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "client.agent.smithi050", "caps": []} : dispatch 2024-09-11T03:16:42.909 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+zCCAuOgAwIBAgIUI68br9T/4yTnJUnoONQVjJrQtF8wDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI0MDkxMTAzMTY0MloXDTM0\nMDkxMjAzMTY0MlowFzEVMBMGA1UEAwwMMTcyLjIxLjE1LjUwMIICIjANBgkqhkiG\n9w0BAQEFAAOCAg8AMIICCgKCAgEAzJs9j6G4kHSLmV1DwhGTN8jofP9Ahq+2IaAD\neuy9CfPVvIcqnD97l9Gw4xOuIxgljLZagmpEId/PdzaGVaqVrUW13S2lV1N4LUw4\nAuzXfeKcVcAvNG9le10wXZohhPPXhl2HNnU35IIXa8r1NWSmgF6Kp5JS3D36Vkuz\nOnumpgwGQx4vDPxsOGgNKnSIxJPTvHDEF+g+bO+ET50dXeTPO/8GsSuzmHdVKRc7\niZx7OyjcrD1L/bhvAgz8FN485ntQ1lv5G+0wS03QbKrwG7h/nAhfeaD8iw1kkcNF\nh8IeKY7kdKCvAvV6a6jk2LctQJhxyu5qjog11hqLFWTukQvUI/QDRi3HBKH18at8\nGfSPu5gPjNJMqpwoz0chsR8qaz/nk0unPwJYeASPT4wtFVG6CRHWQ4j3anarmSEx\nWurRoXjYod1eObNq0l9WCOvsuiGKsv/vd73yp5IHvO9rvyYuV/Xe91isl5PtTsCd\nlJZTBYEzwwY+mkazSmKxtoMOUh4X0VbP7dmtoCdWH10apNV0O+/rUHlw8aY1c8c+\nFLVoDQFqh1W+cSXNTn9mWUrR2jjmbWjwB59UaPiet4Y5iQNQEh4FrpxBxEdt7VX8\n13Dm+ihWLJyuajO0A9Fz7afpXY/TmBcY7fDbIiPQg6huMJrMrjYmAtapmMjfO35z\nfZFLpScCAwEAAaM/MD0wLQYDVR0RBCYwJIIJc21pdGhpMDUwghFkYXNoYm9hcmRf\nc2VydmVyc4cErBUPMjAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBC\nvQC7tuHqjUr1qUgAeO0O+G0/hIAQGtj36naQoeSqwNKeJK37bLfquJtH2VlRNSdG\n/CnfRBRFSa11DDmwiiyqWWLSVeX+tUMr/5Sgu0QM02UEos3Oxd11+9ucfKtbr+Qy\nYb9bMeovL9gWgBTHDm9fzap6ZqTTmNB4BRNmCo2qRiMKjGb7CqR08PlU7UmhFLU9\n6iKD+xU7BybbgY1H21Y2A5vg2aEsZqgk3opZwefYwBdPszA8u40vhkNkjf4Sx188\nQt8b5It4SaM9h9+euRWeYrYzxGgowxYpL8E7i2+9e0pRk5bSWGX2oCoOO8RMcJGh\nNZSPth7L/Vh6q5FyfmmS70VflLMNsx9bcX2sH9kP/YdbXhCal778tx2BNAaonZB+\nZ6TjgTvRLcBml3sle8rCVgaoI3PObuNB+W/ID0qb5CxqnYQxmge1hy473RSD2Kdk\nEAGPUtwTRjf5u9zoIfwhjKlBs3n+agYR2249bbqGgTeaksLDHTX3kR6AC7dCC/HC\nYkQBhplOXcbR21yuGqB1s+awXlEw87NnkFYAdi6kPlqonmWyTQUCVMKqobpUBB7U\nwoUnDpGXqZ7TJEGK1Jxuvdjq2zX6XIXNN+cOcHEVMIaFdDK33yglxEze39yyMMHz\nN/DkCEeBbdkO1sOAFClq1k6B6BEYUiVCwHXmXXnDkg==\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKQIBAAKCAgEAzJs9j6G4kHSLmV1DwhGTN8jofP9Ahq+2IaADeuy9CfPVvIcq\nnD97l9Gw4xOuIxgljLZagmpEId/PdzaGVaqVrUW13S2lV1N4LUw4AuzXfeKcVcAv\nNG9le10wXZohhPPXhl2HNnU35IIXa8r1NWSmgF6Kp5JS3D36VkuzOnumpgwGQx4v\nDPxsOGgNKnSIxJPTvHDEF+g+bO+ET50dXeTPO/8GsSuzmHdVKRc7iZx7OyjcrD1L\n/bhvAgz8FN485ntQ1lv5G+0wS03QbKrwG7h/nAhfeaD8iw1kkcNFh8IeKY7kdKCv\nAvV6a6jk2LctQJhxyu5qjog11hqLFWTukQvUI/QDRi3HBKH18at8GfSPu5gPjNJM\nqpwoz0chsR8qaz/nk0unPwJYeASPT4wtFVG6CRHWQ4j3anarmSExWurRoXjYod1e\nObNq0l9WCOvsuiGKsv/vd73yp5IHvO9rvyYuV/Xe91isl5PtTsCdlJZTBYEzwwY+\nmkazSmKxtoMOUh4X0VbP7dmtoCdWH10apNV0O+/rUHlw8aY1c8c+FLVoDQFqh1W+\ncSXNTn9mWUrR2jjmbWjwB59UaPiet4Y5iQNQEh4FrpxBxEdt7VX813Dm+ihWLJyu\najO0A9Fz7afpXY/TmBcY7fDbIiPQg6huMJrMrjYmAtapmMjfO35zfZFLpScCAwEA\nAQKCAgBLqcbwtCnoBalQLCyv+kbaVMog21XV2Om98ooG7cAUi57JSqTnxhQi9xD2\nUGNPqBDOweqjmr+aVUVH/RpdWKlkO8i+w7AGpJ/nBG4cKtCfxWrxzRHHzsAVCEen\n/aUSoQfdMP4dFej28GLP4myec5udEhktUc+hkavfOLxNTse4VO8F6AYXQ8uTamsf\n/ZtMMqyU3ZCulJxtNX/U3zGqdMBsG+myIAqYwdx0xxolz//ER16ftUVCTO+ELyAT\naYHU69pfgwCSorp+xoZigS4s2iQapAAGnxF1LJ05yCAQzajQzn5OYNOHgRbl9D24\npLiv0BAYruUp01YxWHyBi2MrsVef0BLbiDVbsXNVLNPL8UfGpM37iqMZtUhHxsDu\nCb+nrH+hfwi0Q6wMiB0EPT3AqWmgtaYFaVlbLC9k1fEC8i100llBnIOwPOeDToW9\nvVPJvYD6alouv2Fvg9qi4hggEH/wU92ajzHssLYbqpCkLCX15nYI0B0I0HY7jWUd\nO7+QgG60j0u1CS64QVWfIsXh+SYEJQlbRneibAzUH+TcoNHBsWbJnXHIUHmrtekv\nPAJA+nOzhtuyYf254tNSobNPE7Iq4WVDMv/fF7Tz8X4nq9ssKZEx/vHp214+TjMA\n5OjP6pKsqvAYiRXNnmZkXsQUZzJz90TqD8KlgL2X6r/CqbqocQKCAQEA+uadIXR9\n32EZcLAmbY1XZ93os1yItKblHeCehtMYMnzIMVE1kpfHQj54U4QvgTWO+KKgDxhK\no7oTL2ZEefnzG9eD+gZ7dlqLyiD6iIDngo1NIsD4p/6AYnpUnTl9ZxvA9yANX3ol\nD3jVg36cUtPuvLbCAYbdyvjtRJBrOkB0IlQyBVkw7WFOzqVZghmPH/hmAsVbrN/S\nyAxqcPx15YIOnzl/Vof8OFSn1zN4uxaVuRQCB6v5cdO/sAwY+ZItR0jfMzaMkvXJ\nCSlqHFlNONC7TKfTyg8bFn/R9bbDIqC45avC8Ja4FNheGvi+dnVaqAQwcvgDmzNw\nIRL6x7su7PBf1wKCAQEA0MPEIuQztzXGstsyNnl+1oCC8O9AhxquhEdgLFvPKo6r\ns9ta1iGlcGYp6UNPFXQ2wZxZYLvq5GyuuDCD0vlVuygwlOzORa+FgvryP21qwyvQ\nCjoA98tcG9MH99RhsWIGiY90gm/uOuK8p8cdWkYw08t37LxqnAIQutoORMFhBeL5\nNEZ/mxuqR/yFRN8zid6Abxw+27cXK7Nk8T4KDRzAkoiLsFsIo1x/pEPfHhg+TqTY\ndVPzPs8WckoGhAOJ8pgV8TQZOrGqUwzFHM+yZpON7ir2p2OKURqtjqLeVJzLm0AO\nbVzRTYiDNQh6kjOd/OS8K/Hn4YE0d1K6mMb23Qt7MQKCAQEAwX6Eg76BLHqH0h4n\nJKmyVMoQofKlAx0K6WXHHBdEO/t7sHz+odUnuHDQ/yecMzuIzTst0TZcqbPhA9cM\nzDz1Pe2RPIsvP/FIiVOxowA2irpKWJkVqwldHZVWGAK0MYZ35J31ckKSvkHj+Ar2\np/IF1cfkCqVl+xjKcuwlpcD7T1Y7VWCZmRhIXJmsU+c+N9urYEuwDbx3pAvfMs+g\nZKVOfYEsMSGiZBb1ccOiQjaCtT826Y+5Sg2RcUWDJUWUYbtTVv2kn9mpdsVXrhE4\nuq5PJCjx7oyDyXA+Dg8qolPtBELYjg7OXFUZDhfzWwvaJGVGsAORVGnw+bDXcp1q\n7RPb9QKCAQEAxeO8SUK+Dv4nwqTrPR3/8H7TIGX6adcN9I/gB0xj3ThuZEgbG/26\n4AfH1Lib/38w5Gg7hOm8qBipqik63ELDVGytWI38navayCTuetdSK32dcAQ5pKod\nPrbUx8SHcmi0P7M/QuGtFh6VrAift1HvuOQXYs3b1NRUXXqTqfMQ8E6N4VKuZS5d\nRG2HOpjFNvw2DJzerNEqYp9joRYo2vMVTBGpMFuqnYfx6pj3p4Rdk5jJIraYTkJp\nSZ8H/B2Kpu4pZoH3JF8DUEQ7mKr8tiVKlageNN+zXlwGhr22OMiEbD7VLi+cq30q\nupu17F6HdRCxmoptPqKGRFGkVWvM2A2pEQKCAQA0u+kAHGJgRWd+Y3MPJuMyzWaM\nc299FY3ozyCyZqhOu7PJ+zRJ48uF/Dx9EL2F0dgpFFtyycp/5Yl/KnrC/i6tgwb9\nhujZlMXBQpu2z0a4qZr/ioTQN+5K6qqQeARv3Djefyl7+1JvsufCifhUaYeKtYCg\nyp+4SoqvxkJSbVMSYi8QKs8B39XbiW0HLiOjNeWXKl3gaA02mjha3XCULlZ8rhro\nu7dpJ836UAlCBG7XeNU4WLGGqlzTX3laie3fLuCAB5YbMtbvlUU1Q4efaWbB36P6\nKZbIfoPfJMHUnDThiKUcnRsLcFeYHQUsyBRQkgiYhNhiUjptVpzI7si+yB/U\n-----END RSA PRIVATE KEY-----\n"} 2024-09-11T03:16:44.133 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout SSL certificate updated 2024-09-11T03:16:44.798 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:44 smithi050 ceph-mon[29717]: Deploying daemon agent.smithi050 on smithi050 2024-09-11T03:16:44.798 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:44 smithi050 ceph-mon[29717]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:16:44.798 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:44 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:45.399 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2024-09-11T03:16:45.399 INFO:teuthology.orchestra.run.smithi050.stdout:Creating initial admin user... 2024-09-11T03:16:46.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:45 smithi050 ceph-mon[29717]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:16:46.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:45 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:46.930 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$GWHQ.FQyDPhtm4H1JodRLeEDvEmECuRNOLjXC54u5USERExqMJ2ly", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726024606, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-11T03:16:46.931 INFO:teuthology.orchestra.run.smithi050.stdout:Fetching dashboard port number... 2024-09-11T03:16:47.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:47 smithi050 ceph-mon[29717]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:16:47.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:47 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:48.129 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 8443 2024-09-11T03:16:48.140 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-11T03:16:48.140 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout disabled 2024-09-11T03:16:48.146 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-11T03:16:48.146 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-11T03:16:48.146 INFO:teuthology.orchestra.run.smithi050.stdout:firewalld.service is not enabled 2024-09-11T03:16:48.146 INFO:teuthology.orchestra.run.smithi050.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-11T03:16:48.148 INFO:teuthology.orchestra.run.smithi050.stdout:Ceph Dashboard is now available at: 2024-09-11T03:16:48.149 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:16:48.149 INFO:teuthology.orchestra.run.smithi050.stdout: URL: https://smithi050.front.sepia.ceph.com:8443/ 2024-09-11T03:16:48.149 INFO:teuthology.orchestra.run.smithi050.stdout: User: admin 2024-09-11T03:16:48.149 INFO:teuthology.orchestra.run.smithi050.stdout: Password: tmx1bk0875 2024-09-11T03:16:48.149 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:16:48.149 INFO:teuthology.orchestra.run.smithi050.stdout:Saving cluster configuration to /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config directory 2024-09-11T03:16:48.872 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:48 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/481046735' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-11T03:16:49.402 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-11T03:16:49.402 INFO:teuthology.orchestra.run.smithi050.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-11T03:16:49.402 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:16:49.402 INFO:teuthology.orchestra.run.smithi050.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-11T03:16:49.402 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:16:49.403 INFO:teuthology.orchestra.run.smithi050.stdout:Or, if you are only running a single cluster on this host: 2024-09-11T03:16:49.403 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:16:49.403 INFO:teuthology.orchestra.run.smithi050.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-11T03:16:49.403 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:16:49.403 INFO:teuthology.orchestra.run.smithi050.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-11T03:16:49.403 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:16:49.403 INFO:teuthology.orchestra.run.smithi050.stdout: ceph telemetry on 2024-09-11T03:16:49.404 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:16:49.404 INFO:teuthology.orchestra.run.smithi050.stdout:For more information see: 2024-09-11T03:16:49.404 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:16:49.404 INFO:teuthology.orchestra.run.smithi050.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-11T03:16:49.404 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:16:49.404 INFO:teuthology.orchestra.run.smithi050.stdout:Bootstrap complete. 2024-09-11T03:16:49.445 INFO:tasks.cephadm:Fetching config... 2024-09-11T03:16:49.445 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:16:49.445 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-11T03:16:49.462 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-11T03:16:49.463 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:16:49.463 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-11T03:16:49.520 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-11T03:16:49.520 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:16:49.520 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-11T03:16:49.689 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-11T03:16:49.689 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:16:49.689 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-11T03:16:49.752 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-11T03:16:49.753 DEBUG:teuthology.orchestra.run.smithi050:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDHPFS+SFPvG9bh3yZK9xWbtVEM6kWiRa7sbvR4UCpFTdhSdU4Hup/pGrDFUGpFEX+ePRok2hoGkBGZ+i7i1RF4Za9fJFg/s8bLd+U0qotBIU3NYdUWPpJCWNwlsJ++qhHv4Q484/aV17xR1tJDL0aNnMQFBVb8qwaeNSCsTbsX2cURRtXjkSxxUPrP36l65dtFnNrFdsU6/U3DlwchugqnxvitCSKzW8kgI9nLZ8+un0avnOX32D6Hpb+yIY0kBKo7b2iTR/W4EMYfva3DFO2pavIUepdn1KTS163OJF8MVlAhWbSFbxRcJdV8icGMqrKbds1I+UPu5p7ZQq6vUjcQAA8Y3pxIrykdT4P77md8Ib2AE0zk8J/LJxPw7UCfP2fMmToCs8ua0RWuwuBl+OTwoSDXOe06sIh1n809v1TZ3XHATysyVXEH5hhatIEBj3O+g5uJ0ZGzeZBT0YYJLyO8WkrFDLxaLAtwsZcWnBOySzWJ66FkiPdPp0xxeo0iIE8= ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-11T03:16:49.896 INFO:teuthology.orchestra.run.smithi050.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDHPFS+SFPvG9bh3yZK9xWbtVEM6kWiRa7sbvR4UCpFTdhSdU4Hup/pGrDFUGpFEX+ePRok2hoGkBGZ+i7i1RF4Za9fJFg/s8bLd+U0qotBIU3NYdUWPpJCWNwlsJ++qhHv4Q484/aV17xR1tJDL0aNnMQFBVb8qwaeNSCsTbsX2cURRtXjkSxxUPrP36l65dtFnNrFdsU6/U3DlwchugqnxvitCSKzW8kgI9nLZ8+un0avnOX32D6Hpb+yIY0kBKo7b2iTR/W4EMYfva3DFO2pavIUepdn1KTS163OJF8MVlAhWbSFbxRcJdV8icGMqrKbds1I+UPu5p7ZQq6vUjcQAA8Y3pxIrykdT4P77md8Ib2AE0zk8J/LJxPw7UCfP2fMmToCs8ua0RWuwuBl+OTwoSDXOe06sIh1n809v1TZ3XHATysyVXEH5hhatIEBj3O+g5uJ0ZGzeZBT0YYJLyO8WkrFDLxaLAtwsZcWnBOySzWJ66FkiPdPp0xxeo0iIE8= ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:16:49.910 DEBUG:teuthology.orchestra.run.smithi120:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDHPFS+SFPvG9bh3yZK9xWbtVEM6kWiRa7sbvR4UCpFTdhSdU4Hup/pGrDFUGpFEX+ePRok2hoGkBGZ+i7i1RF4Za9fJFg/s8bLd+U0qotBIU3NYdUWPpJCWNwlsJ++qhHv4Q484/aV17xR1tJDL0aNnMQFBVb8qwaeNSCsTbsX2cURRtXjkSxxUPrP36l65dtFnNrFdsU6/U3DlwchugqnxvitCSKzW8kgI9nLZ8+un0avnOX32D6Hpb+yIY0kBKo7b2iTR/W4EMYfva3DFO2pavIUepdn1KTS163OJF8MVlAhWbSFbxRcJdV8icGMqrKbds1I+UPu5p7ZQq6vUjcQAA8Y3pxIrykdT4P77md8Ib2AE0zk8J/LJxPw7UCfP2fMmToCs8ua0RWuwuBl+OTwoSDXOe06sIh1n809v1TZ3XHATysyVXEH5hhatIEBj3O+g5uJ0ZGzeZBT0YYJLyO8WkrFDLxaLAtwsZcWnBOySzWJ66FkiPdPp0xxeo0iIE8= ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-11T03:16:49.953 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:49 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1197164038' entity='client.admin' 2024-09-11T03:16:50.120 INFO:teuthology.orchestra.run.smithi120.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDHPFS+SFPvG9bh3yZK9xWbtVEM6kWiRa7sbvR4UCpFTdhSdU4Hup/pGrDFUGpFEX+ePRok2hoGkBGZ+i7i1RF4Za9fJFg/s8bLd+U0qotBIU3NYdUWPpJCWNwlsJ++qhHv4Q484/aV17xR1tJDL0aNnMQFBVb8qwaeNSCsTbsX2cURRtXjkSxxUPrP36l65dtFnNrFdsU6/U3DlwchugqnxvitCSKzW8kgI9nLZ8+un0avnOX32D6Hpb+yIY0kBKo7b2iTR/W4EMYfva3DFO2pavIUepdn1KTS163OJF8MVlAhWbSFbxRcJdV8icGMqrKbds1I+UPu5p7ZQq6vUjcQAA8Y3pxIrykdT4P77md8Ib2AE0zk8J/LJxPw7UCfP2fMmToCs8ua0RWuwuBl+OTwoSDXOe06sIh1n809v1TZ3XHATysyVXEH5hhatIEBj3O+g5uJ0ZGzeZBT0YYJLyO8WkrFDLxaLAtwsZcWnBOySzWJ66FkiPdPp0xxeo0iIE8= ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:16:50.134 DEBUG:teuthology.orchestra.run.smithi165:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDHPFS+SFPvG9bh3yZK9xWbtVEM6kWiRa7sbvR4UCpFTdhSdU4Hup/pGrDFUGpFEX+ePRok2hoGkBGZ+i7i1RF4Za9fJFg/s8bLd+U0qotBIU3NYdUWPpJCWNwlsJ++qhHv4Q484/aV17xR1tJDL0aNnMQFBVb8qwaeNSCsTbsX2cURRtXjkSxxUPrP36l65dtFnNrFdsU6/U3DlwchugqnxvitCSKzW8kgI9nLZ8+un0avnOX32D6Hpb+yIY0kBKo7b2iTR/W4EMYfva3DFO2pavIUepdn1KTS163OJF8MVlAhWbSFbxRcJdV8icGMqrKbds1I+UPu5p7ZQq6vUjcQAA8Y3pxIrykdT4P77md8Ib2AE0zk8J/LJxPw7UCfP2fMmToCs8ua0RWuwuBl+OTwoSDXOe06sIh1n809v1TZ3XHATysyVXEH5hhatIEBj3O+g5uJ0ZGzeZBT0YYJLyO8WkrFDLxaLAtwsZcWnBOySzWJ66FkiPdPp0xxeo0iIE8= ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-11T03:16:50.254 INFO:teuthology.orchestra.run.smithi165.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDHPFS+SFPvG9bh3yZK9xWbtVEM6kWiRa7sbvR4UCpFTdhSdU4Hup/pGrDFUGpFEX+ePRok2hoGkBGZ+i7i1RF4Za9fJFg/s8bLd+U0qotBIU3NYdUWPpJCWNwlsJ++qhHv4Q484/aV17xR1tJDL0aNnMQFBVb8qwaeNSCsTbsX2cURRtXjkSxxUPrP36l65dtFnNrFdsU6/U3DlwchugqnxvitCSKzW8kgI9nLZ8+un0avnOX32D6Hpb+yIY0kBKo7b2iTR/W4EMYfva3DFO2pavIUepdn1KTS163OJF8MVlAhWbSFbxRcJdV8icGMqrKbds1I+UPu5p7ZQq6vUjcQAA8Y3pxIrykdT4P77md8Ib2AE0zk8J/LJxPw7UCfP2fMmToCs8ua0RWuwuBl+OTwoSDXOe06sIh1n809v1TZ3XHATysyVXEH5hhatIEBj3O+g5uJ0ZGzeZBT0YYJLyO8WkrFDLxaLAtwsZcWnBOySzWJ66FkiPdPp0xxeo0iIE8= ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:16:50.268 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-11T03:16:50.712 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:16:51.794 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:51.794 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:51.794 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:51.794 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:16:51.794 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:51.794 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:51.794 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:51.794 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:51.795 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:51.795 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:16:51.795 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:51.795 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:51.795 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3365426497' entity='client.admin' 2024-09-11T03:16:51.795 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:16:51.795 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:52.090 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-11T03:16:52.091 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-11T03:16:52.405 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:16:52.976 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:52 smithi050 ceph-mon[29717]: mgrmap e13: a(active, since 12s) 2024-09-11T03:16:54.296 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:54 smithi050 ceph-mon[29717]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:16:54.297 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:54.297 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:16:54.297 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:16:54.297 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:16:54.297 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:54 smithi050 ceph-mon[29717]: Updating smithi050:/etc/ceph/ceph.conf 2024-09-11T03:16:54.297 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:54 smithi050 ceph-mon[29717]: Updating smithi050:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:16:54.297 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:54 smithi050 ceph-mon[29717]: Updating smithi050:/etc/ceph/ceph.client.admin.keyring 2024-09-11T03:16:54.297 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:54 smithi050 ceph-mon[29717]: Updating smithi050:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T03:16:54.297 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:54.297 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:55.208 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi120 2024-09-11T03:16:55.208 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-11T03:16:55.208 DEBUG:teuthology.orchestra.run.smithi120:> dd of=/etc/ceph/ceph.conf 2024-09-11T03:16:55.227 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-11T03:16:55.227 DEBUG:teuthology.orchestra.run.smithi120:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-11T03:16:55.285 INFO:tasks.cephadm:Adding host smithi120 to orchestrator... 2024-09-11T03:16:55.285 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph orch host add smithi120 2024-09-11T03:16:55.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:55.789 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:16:57.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:57.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:57.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:57.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:16:57.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:56 smithi050 ceph-mon[29717]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi120", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:16:58.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:16:57 smithi050 ceph-mon[29717]: Deploying cephadm binary to smithi120 2024-09-11T03:17:00.339 INFO:teuthology.orchestra.run.smithi050.stdout:Added host 'smithi120' with addr '172.21.15.120' 2024-09-11T03:17:00.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:00 smithi050 ceph-mon[29717]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:00.975 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph orch host ls --format=json 2024-09-11T03:17:01.232 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:17:01.624 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:01 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:01.624 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:01 smithi050 ceph-mon[29717]: Added host smithi120 2024-09-11T03:17:01.624 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:01 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:01.624 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:01 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:01.624 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:01 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:01.624 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:01 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:01.624 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:01 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi120", "name": "osd_memory_target"} : dispatch 2024-09-11T03:17:01.624 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:01 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:01.625 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:01 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:01.907 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:17:01.907 INFO:teuthology.orchestra.run.smithi050.stdout:[{"addr": "172.21.15.50", "hostname": "smithi050", "labels": [], "status": ""}, {"addr": "172.21.15.120", "hostname": "smithi120", "labels": [], "status": ""}] 2024-09-11T03:17:02.519 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi165 2024-09-11T03:17:02.519 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-11T03:17:02.519 DEBUG:teuthology.orchestra.run.smithi165:> dd of=/etc/ceph/ceph.conf 2024-09-11T03:17:02.540 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-11T03:17:02.540 DEBUG:teuthology.orchestra.run.smithi165:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-11T03:17:02.597 INFO:tasks.cephadm:Adding host smithi165 to orchestrator... 2024-09-11T03:17:02.598 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph orch host add smithi165 2024-09-11T03:17:02.848 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:17:03.066 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:02 smithi050 ceph-mon[29717]: Updating smithi120:/etc/ceph/ceph.conf 2024-09-11T03:17:03.067 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:02 smithi050 ceph-mon[29717]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:03.067 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:02 smithi050 ceph-mon[29717]: Updating smithi120:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:03.067 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:02 smithi050 ceph-mon[29717]: Updating smithi120:/etc/ceph/ceph.client.admin.keyring 2024-09-11T03:17:03.067 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:02 smithi050 ceph-mon[29717]: Updating smithi120:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T03:17:03.067 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:02 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:03.067 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:02 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:03.067 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:02 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "client.agent.smithi120", "caps": []} : dispatch 2024-09-11T03:17:03.067 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:02 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi120", "caps": []}]': finished 2024-09-11T03:17:04.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:03 smithi050 ceph-mon[29717]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:17:04.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:03 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:04.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:03 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:04.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:03 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:04.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:03 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:04.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:03 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:04.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:03 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:04.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:03 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:05.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:04 smithi050 ceph-mon[29717]: Deploying daemon agent.smithi120 on smithi120 2024-09-11T03:17:05.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:04 smithi050 ceph-mon[29717]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:05.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:04 smithi050 ceph-mon[29717]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:17:05.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:05.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:05.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:05.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:05.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:05.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:05.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:05.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:06.127 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:05 smithi050 ceph-mon[29717]: Deploying cephadm binary to smithi165 2024-09-11T03:17:07.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:06 smithi050 ceph-mon[29717]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:07.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:07.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:07.415 INFO:teuthology.orchestra.run.smithi050.stdout:Added host 'smithi165' with addr '172.21.15.165' 2024-09-11T03:17:08.069 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph orch host ls --format=json 2024-09-11T03:17:08.328 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:17:08.779 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:08 smithi050 ceph-mon[29717]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:08.779 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:08.779 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:08 smithi050 ceph-mon[29717]: Added host smithi165 2024-09-11T03:17:08.779 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:08.780 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:08.780 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:08.780 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:08.780 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi165", "name": "osd_memory_target"} : dispatch 2024-09-11T03:17:08.780 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:08.780 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:09.067 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:17:09.067 INFO:teuthology.orchestra.run.smithi050.stdout:[{"addr": "172.21.15.50", "hostname": "smithi050", "labels": [], "status": ""}, {"addr": "172.21.15.120", "hostname": "smithi120", "labels": [], "status": ""}, {"addr": "172.21.15.165", "hostname": "smithi165", "labels": [], "status": ""}] 2024-09-11T03:17:09.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:09 smithi050 ceph-mon[29717]: Updating smithi165:/etc/ceph/ceph.conf 2024-09-11T03:17:09.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:09 smithi050 ceph-mon[29717]: Updating smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:09.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:09 smithi050 ceph-mon[29717]: Updating smithi165:/etc/ceph/ceph.client.admin.keyring 2024-09-11T03:17:09.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:09 smithi050 ceph-mon[29717]: Updating smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T03:17:09.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:09 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:09.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:09 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:09.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:09 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "client.agent.smithi165", "caps": []} : dispatch 2024-09-11T03:17:09.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:09 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi165", "caps": []}]': finished 2024-09-11T03:17:09.708 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-11T03:17:09.708 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph osd crush tunables default 2024-09-11T03:17:09.955 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:17:10.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:10 smithi050 ceph-mon[29717]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:10.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:10 smithi050 ceph-mon[29717]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:17:11.418 INFO:teuthology.orchestra.run.smithi050.stderr:adjusted tunables profile to default 2024-09-11T03:17:11.450 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: Deploying daemon agent.smithi165 on smithi165 2024-09-11T03:17:11.450 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/313431826' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-11T03:17:11.450 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:11.450 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:11.450 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:11.450 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:11.450 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:11.450 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:11.451 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:11.451 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:11.451 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:11.451 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:11.451 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:11.451 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:12.024 INFO:tasks.cephadm:Adding mon.a on smithi050 2024-09-11T03:17:12.024 INFO:tasks.cephadm:Adding mon.b on smithi120 2024-09-11T03:17:12.024 INFO:tasks.cephadm:Adding mon.c on smithi165 2024-09-11T03:17:12.024 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph orch apply mon '3;smithi050:172.21.15.50=a;smithi120:172.21.15.120=b;smithi165:172.21.15.165=c' 2024-09-11T03:17:12.516 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:12.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:12 smithi050 ceph-mon[29717]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:12.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:12 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/313431826' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-11T03:17:12.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:12 smithi050 ceph-mon[29717]: osdmap e4: 0 total, 0 up, 0 in 2024-09-11T03:17:12.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:12.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:12.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:12.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:12.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:13.929 INFO:teuthology.orchestra.run.smithi165.stdout:Scheduled mon update... 2024-09-11T03:17:14.541 DEBUG:teuthology.orchestra.run.smithi120:mon.b> sudo journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.b.service 2024-09-11T03:17:14.544 DEBUG:teuthology.orchestra.run.smithi165:mon.c> sudo journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.c.service 2024-09-11T03:17:14.547 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-11T03:17:14.547 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T03:17:14.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:14 smithi050 ceph-mon[29717]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:14.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:14.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:14.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:14.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:14.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:14.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:17:14.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:15.010 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:15.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:15 smithi050 ceph-mon[29717]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi050:172.21.15.50=a;smithi120:172.21.15.120=b;smithi165:172.21.15.165=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:17:15.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:15 smithi050 ceph-mon[29717]: Saving service mon spec with placement smithi050:172.21.15.50=a;smithi120:172.21.15.120=b;smithi165:172.21.15.165=c;count:3 2024-09-11T03:17:15.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:15 smithi050 ceph-mon[29717]: Deploying daemon mon.c on smithi165 2024-09-11T03:17:15.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:15.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:15.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:16.001 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:17:16.001 INFO:teuthology.orchestra.run.smithi165.stdout:{"epoch":1,"fsid":"ff8a8a62-6feb-11ef-bcea-c7b262605968","modified":"2024-09-11T03:15:38.656471Z","created":"2024-09-11T03:15:38.656471Z","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-09-11T03:17:16.001 INFO:teuthology.orchestra.run.smithi165.stderr:dumped monmap epoch 1 2024-09-11T03:17:16.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:16 smithi050 ceph-mon[29717]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:16.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:16 smithi050 ceph-mon[29717]: from='client.? 172.21.15.165:0/1641332813' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-11T03:17:18.117 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-11T03:17:18.117 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T03:17:18.472 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T03:17:18.877 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:18 smithi050 ceph-mon[29717]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:19.255 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:17:19.255 INFO:teuthology.orchestra.run.smithi165.stdout:{"epoch":1,"fsid":"ff8a8a62-6feb-11ef-bcea-c7b262605968","modified":"2024-09-11T03:15:38.656471Z","created":"2024-09-11T03:15:38.656471Z","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-09-11T03:17:19.255 INFO:teuthology.orchestra.run.smithi165.stderr:dumped monmap epoch 1 2024-09-11T03:17:19.420 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: mon.c@-1(???) e0 preinit fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:17:19.420 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: mon.c@-1(synchronizing).mds e1 new map 2024-09-11T03:17:19.420 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: mon.c@-1(synchronizing).mds e1 print_map 2024-09-11T03:17:19.420 INFO:journalctl@ceph.mon.c.smithi165.stdout: e1 2024-09-11T03:17:19.420 INFO:journalctl@ceph.mon.c.smithi165.stdout: btime 2024-09-11T03:15:41:838193+0000 2024-09-11T03:17:19.420 INFO:journalctl@ceph.mon.c.smithi165.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-11T03:17:19.420 INFO:journalctl@ceph.mon.c.smithi165.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-11T03:17:19.420 INFO:journalctl@ceph.mon.c.smithi165.stdout: legacy client fscid: -1 2024-09-11T03:17:19.420 INFO:journalctl@ceph.mon.c.smithi165.stdout: 2024-09-11T03:17:19.420 INFO:journalctl@ceph.mon.c.smithi165.stdout: No filesystems configured 2024-09-11T03:17:19.421 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-11T03:17:19.421 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: 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-09-11T03:17:19.421 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-11T03:17:19.421 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-11T03:17:19.421 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-11T03:17:19.421 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-11T03:17:19.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-11T03:17:19.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T03:17:19.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T03:17:19.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T03:17:19.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: Deploying daemon agent.smithi120 on smithi120 2024-09-11T03:17:19.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:19.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:17:19.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:19.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:19.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:19.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.682 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: Deploying cephadm binary to smithi165 2024-09-11T03:17:19.682 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:19.682 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.682 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.682 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:19.682 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.682 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: Added host smithi165 2024-09-11T03:17:19.682 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:19.682 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.682 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.682 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.682 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi165", "name": "osd_memory_target"} : dispatch 2024-09-11T03:17:19.682 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:19.683 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:19.683 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: Updating smithi165:/etc/ceph/ceph.conf 2024-09-11T03:17:19.683 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: Updating smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:19.683 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: Updating smithi165:/etc/ceph/ceph.client.admin.keyring 2024-09-11T03:17:19.683 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: Updating smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T03:17:19.683 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.683 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.683 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "client.agent.smithi165", "caps": []} : dispatch 2024-09-11T03:17:19.683 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi165", "caps": []}]': finished 2024-09-11T03:17:19.683 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:19.683 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:17:19.683 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: Deploying daemon agent.smithi165 on smithi165 2024-09-11T03:17:19.684 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/313431826' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-11T03:17:19.684 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.684 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.684 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.684 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:19.684 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:19.684 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:19.684 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.684 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:19.684 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:19.684 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:19.684 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.684 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.685 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:19.685 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/313431826' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-11T03:17:19.685 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: osdmap e4: 0 total, 0 up, 0 in 2024-09-11T03:17:19.685 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.685 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.685 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.685 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.685 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.685 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:19.685 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.685 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:19.685 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:19.685 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:19.686 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.686 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:17:19.686 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:19.686 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi050:172.21.15.50=a;smithi120:172.21.15.120=b;smithi165:172.21.15.165=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:17:19.686 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: Saving service mon spec with placement smithi050:172.21.15.50=a;smithi120:172.21.15.120=b;smithi165:172.21.15.165=c;count:3 2024-09-11T03:17:19.686 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: Deploying daemon mon.c on smithi165 2024-09-11T03:17:19.686 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.686 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.686 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:19.686 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:19.686 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: from='client.? 172.21.15.165:0/1641332813' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-11T03:17:19.686 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:19.686 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 ceph-mon[31795]: mon.c@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-09-11T03:17:20.095 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 bash[31743]: caf3fd76368c654130af5c5fff586376e208f4d15af221df9bef739b5593e401 2024-09-11T03:17:20.095 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:19 smithi165 systemd[1]: Started Ceph mon.c for ff8a8a62-6feb-11ef-bcea-c7b262605968. 2024-09-11T03:17:21.123 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-11T03:17:21.124 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T03:17:21.391 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T03:17:24.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:24.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:17:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: mon.a calling monitor election 2024-09-11T03:17:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: mon.c calling monitor election 2024-09-11T03:17:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-11T03:17:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: monmap epoch 2 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: last_changed 2024-09-11T03:17:19.425919+0000 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: created 2024-09-11T03:15:38.656471+0000 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: min_mon_release 19 (squid) 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: election_strategy: 1 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: 1: [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] mon.c 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: fsmap 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: osdmap e4: 0 total, 0 up, 0 in 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: mgrmap e13: a(active, since 45s) 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: overall HEALTH_OK 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:24.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:24.881 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:24.881 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:24.881 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:17:24.881 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:24.881 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:24.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:24.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:17:24.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: mon.a calling monitor election 2024-09-11T03:17:24.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:24.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:24.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:24.932 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:24.932 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: mon.c calling monitor election 2024-09-11T03:17:24.932 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:24.932 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:24.932 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:24.932 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:24.932 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-11T03:17:24.932 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: monmap epoch 2 2024-09-11T03:17:24.932 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:17:24.932 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: last_changed 2024-09-11T03:17:19.425919+0000 2024-09-11T03:17:24.932 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: created 2024-09-11T03:15:38.656471+0000 2024-09-11T03:17:24.932 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: min_mon_release 19 (squid) 2024-09-11T03:17:24.932 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: election_strategy: 1 2024-09-11T03:17:24.933 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-09-11T03:17:24.933 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: 1: [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] mon.c 2024-09-11T03:17:24.933 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: fsmap 2024-09-11T03:17:24.933 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: osdmap e4: 0 total, 0 up, 0 in 2024-09-11T03:17:24.933 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: mgrmap e13: a(active, since 45s) 2024-09-11T03:17:24.933 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: overall HEALTH_OK 2024-09-11T03:17:24.933 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:24.933 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:24.933 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:24.933 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:24.933 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:24.933 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:17:24.933 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:24.934 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:24 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:25.073 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:17:25.073 INFO:teuthology.orchestra.run.smithi165.stdout:{"epoch":2,"fsid":"ff8a8a62-6feb-11ef-bcea-c7b262605968","modified":"2024-09-11T03:17:19.425919Z","created":"2024-09-11T03:15:38.656471Z","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.165:3300","nonce":0},{"type":"v1","addr":"172.21.15.165:6789","nonce":0}]},"addr":"172.21.15.165:6789/0","public_addr":"172.21.15.165:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-11T03:17:25.074 INFO:teuthology.orchestra.run.smithi165.stderr:dumped monmap epoch 2 2024-09-11T03:17:25.626 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:25 smithi165 ceph-mon[31795]: Deploying daemon mon.b on smithi120 2024-09-11T03:17:25.626 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:25 smithi165 ceph-mon[31795]: from='client.? 172.21.15.165:0/797385581' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-11T03:17:25.627 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:25 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:25.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:25 smithi050 ceph-mon[29717]: Deploying daemon mon.b on smithi120 2024-09-11T03:17:25.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:25 smithi050 ceph-mon[29717]: from='client.? 172.21.15.165:0/797385581' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-11T03:17:25.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:26.654 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-11T03:17:26.655 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T03:17:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:26 smithi050 ceph-mon[29717]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:26.920 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T03:17:26.929 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:26 smithi165 ceph-mon[31795]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:27.547 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:17:27.548 INFO:teuthology.orchestra.run.smithi165.stdout:{"epoch":2,"fsid":"ff8a8a62-6feb-11ef-bcea-c7b262605968","modified":"2024-09-11T03:17:19.425919Z","created":"2024-09-11T03:15:38.656471Z","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.165:3300","nonce":0},{"type":"v1","addr":"172.21.15.165:6789","nonce":0}]},"addr":"172.21.15.165:6789/0","public_addr":"172.21.15.165:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-11T03:17:27.548 INFO:teuthology.orchestra.run.smithi165.stderr:dumped monmap epoch 2 2024-09-11T03:17:28.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:28 smithi050 ceph-mon[29717]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:28.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:28 smithi050 ceph-mon[29717]: from='client.? 172.21.15.165:0/643583023' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-11T03:17:28.929 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:28 smithi165 ceph-mon[31795]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:28.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:28 smithi165 ceph-mon[31795]: from='client.? 172.21.15.165:0/643583023' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-11T03:17:29.126 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-11T03:17:29.127 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T03:17:29.356 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:29 smithi120 ceph-mon[31737]: mon.b@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-09-11T03:17:29.379 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T03:17:29.623 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:29 smithi120 bash[31699]: c380cace390c10497dd4776548f782ced5f78b0709c2cb59132dea37c1d6ba36 2024-09-11T03:17:29.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:29 smithi120 systemd[1]: Started Ceph mon.b for ff8a8a62-6feb-11ef-bcea-c7b262605968. 2024-09-11T03:17:34.557 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:34.557 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:17:34.557 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: mon.a calling monitor election 2024-09-11T03:17:34.557 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: mon.c calling monitor election 2024-09-11T03:17:34.558 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:34.558 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:34.558 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:34.558 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:34.558 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:34.558 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:34.558 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:34.558 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:34.558 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:34.558 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-11T03:17:34.558 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: monmap epoch 3 2024-09-11T03:17:34.558 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:17:34.558 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: last_changed 2024-09-11T03:17:29.325521+0000 2024-09-11T03:17:34.559 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: created 2024-09-11T03:15:38.656471+0000 2024-09-11T03:17:34.559 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: min_mon_release 19 (squid) 2024-09-11T03:17:34.559 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: election_strategy: 1 2024-09-11T03:17:34.559 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-09-11T03:17:34.559 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: 1: [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] mon.c 2024-09-11T03:17:34.559 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: 2: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.b 2024-09-11T03:17:34.559 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: fsmap 2024-09-11T03:17:34.559 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: osdmap e4: 0 total, 0 up, 0 in 2024-09-11T03:17:34.559 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: mgrmap e13: a(active, since 55s) 2024-09-11T03:17:34.559 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-11T03:17:34.559 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-11T03:17:34.559 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-11T03:17:34.559 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: mon.b (rank 2) addr [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] is down (out of quorum) 2024-09-11T03:17:34.560 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.560 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.560 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.560 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.560 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.560 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.560 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.560 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.560 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.560 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:34.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:17:34.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: mon.a calling monitor election 2024-09-11T03:17:34.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: mon.c calling monitor election 2024-09-11T03:17:34.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:34.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:34.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:34.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:34.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:34.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:34.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:34.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:34.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:34.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-11T03:17:34.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: monmap epoch 3 2024-09-11T03:17:34.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:17:34.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: last_changed 2024-09-11T03:17:29.325521+0000 2024-09-11T03:17:34.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: created 2024-09-11T03:15:38.656471+0000 2024-09-11T03:17:34.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: min_mon_release 19 (squid) 2024-09-11T03:17:34.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: election_strategy: 1 2024-09-11T03:17:34.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-09-11T03:17:34.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: 1: [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] mon.c 2024-09-11T03:17:34.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: 2: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.b 2024-09-11T03:17:34.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: fsmap 2024-09-11T03:17:34.630 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: osdmap e4: 0 total, 0 up, 0 in 2024-09-11T03:17:34.631 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: mgrmap e13: a(active, since 55s) 2024-09-11T03:17:34.631 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-11T03:17:34.631 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-11T03:17:34.631 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-11T03:17:34.631 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: mon.b (rank 2) addr [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] is down (out of quorum) 2024-09-11T03:17:34.631 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.631 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.631 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.631 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.631 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.631 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.631 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.631 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.632 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:34.632 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.761 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.761 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:35.761 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:35.761 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:35.761 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: Updating smithi050:/etc/ceph/ceph.conf 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: Updating smithi120:/etc/ceph/ceph.conf 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: Updating smithi165:/etc/ceph/ceph.conf 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: Updating smithi050:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: Updating smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: Updating smithi120:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:17:35.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-11T03:17:35.763 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:35.763 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:35 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:35.864 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.864 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:35.864 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:35.864 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:35.864 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: Updating smithi050:/etc/ceph/ceph.conf 2024-09-11T03:17:35.864 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: Updating smithi120:/etc/ceph/ceph.conf 2024-09-11T03:17:35.864 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: Updating smithi165:/etc/ceph/ceph.conf 2024-09-11T03:17:35.864 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: Updating smithi050:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:35.864 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: Updating smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:35.864 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: Updating smithi120:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:35.864 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.865 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.865 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.865 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.865 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.865 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.865 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:35.865 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:17:35.865 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-11T03:17:35.865 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:35.865 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:35 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:36.077 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:17:36.077 INFO:teuthology.orchestra.run.smithi165.stdout:{"epoch":3,"fsid":"ff8a8a62-6feb-11ef-bcea-c7b262605968","modified":"2024-09-11T03:17:29.325521Z","created":"2024-09-11T03:15:38.656471Z","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.165:3300","nonce":0},{"type":"v1","addr":"172.21.15.165:6789","nonce":0}]},"addr":"172.21.15.165:6789/0","public_addr":"172.21.15.165:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:3300","nonce":0},{"type":"v1","addr":"172.21.15.120:6789","nonce":0}]},"addr":"172.21.15.120:6789/0","public_addr":"172.21.15.120:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-11T03:17:36.077 INFO:teuthology.orchestra.run.smithi165.stderr:dumped monmap epoch 3 2024-09-11T03:17:36.468 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:36.468 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:17:36.468 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: mon.a calling monitor election 2024-09-11T03:17:36.468 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: mon.c calling monitor election 2024-09-11T03:17:36.468 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:36.468 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:17:36.468 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:36.468 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:36.468 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:36.469 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:36.469 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:36.469 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:36.469 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:36.469 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-11T03:17:36.469 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: monmap epoch 3 2024-09-11T03:17:36.469 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:17:36.469 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: last_changed 2024-09-11T03:17:29.325521+0000 2024-09-11T03:17:36.469 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: created 2024-09-11T03:15:38.656471+0000 2024-09-11T03:17:36.469 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: min_mon_release 19 (squid) 2024-09-11T03:17:36.469 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: election_strategy: 1 2024-09-11T03:17:36.469 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-09-11T03:17:36.469 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: 1: [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] mon.c 2024-09-11T03:17:36.470 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: 2: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.b 2024-09-11T03:17:36.470 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: fsmap 2024-09-11T03:17:36.470 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: osdmap e4: 0 total, 0 up, 0 in 2024-09-11T03:17:36.470 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: mgrmap e13: a(active, since 55s) 2024-09-11T03:17:36.470 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-11T03:17:36.470 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-11T03:17:36.470 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-11T03:17:36.470 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: mon.b (rank 2) addr [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] is down (out of quorum) 2024-09-11T03:17:36.470 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.470 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.470 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.470 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.470 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: Updating smithi050:/etc/ceph/ceph.conf 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: Updating smithi120:/etc/ceph/ceph.conf 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: Updating smithi165:/etc/ceph/ceph.conf 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: Updating smithi050:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:36.471 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: Updating smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:36.472 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: Updating smithi120:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:17:36.472 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.472 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.472 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.472 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.472 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.472 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.472 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:36.472 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:17:36.472 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-11T03:17:36.472 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:36.472 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:36.907 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-11T03:17:36.908 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph config generate-minimal-conf 2024-09-11T03:17:37.104 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: mon.b calling monitor election 2024-09-11T03:17:37.105 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: mon.b calling monitor election 2024-09-11T03:17:37.105 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: mon.c calling monitor election 2024-09-11T03:17:37.105 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: mon.a calling monitor election 2024-09-11T03:17:37.105 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-11T03:17:37.105 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: monmap epoch 3 2024-09-11T03:17:37.105 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:17:37.105 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: last_changed 2024-09-11T03:17:29.325521+0000 2024-09-11T03:17:37.105 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: created 2024-09-11T03:15:38.656471+0000 2024-09-11T03:17:37.105 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: min_mon_release 19 (squid) 2024-09-11T03:17:37.105 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: election_strategy: 1 2024-09-11T03:17:37.105 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-09-11T03:17:37.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: 1: [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] mon.c 2024-09-11T03:17:37.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: 2: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.b 2024-09-11T03:17:37.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: fsmap 2024-09-11T03:17:37.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: osdmap e4: 0 total, 0 up, 0 in 2024-09-11T03:17:37.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: mgrmap e13: a(active, since 57s) 2024-09-11T03:17:37.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-11T03:17:37.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: Cluster is now healthy 2024-09-11T03:17:37.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: overall HEALTH_OK 2024-09-11T03:17:37.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:37.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:37.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: Reconfiguring mon.b (monmap changed)... 2024-09-11T03:17:37.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:17:37.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-11T03:17:37.107 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:37.107 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:37 smithi120 ceph-mon[31737]: Reconfiguring daemon mon.b on smithi120 2024-09-11T03:17:37.164 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:17:37.173 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: mon.b calling monitor election 2024-09-11T03:17:37.173 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: mon.b calling monitor election 2024-09-11T03:17:37.173 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: mon.c calling monitor election 2024-09-11T03:17:37.173 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: mon.a calling monitor election 2024-09-11T03:17:37.173 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-11T03:17:37.173 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: monmap epoch 3 2024-09-11T03:17:37.173 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:17:37.173 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: last_changed 2024-09-11T03:17:29.325521+0000 2024-09-11T03:17:37.173 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: created 2024-09-11T03:15:38.656471+0000 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: min_mon_release 19 (squid) 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: election_strategy: 1 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: 1: [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] mon.c 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: 2: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.b 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: fsmap 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: osdmap e4: 0 total, 0 up, 0 in 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: mgrmap e13: a(active, since 57s) 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: Cluster is now healthy 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: overall HEALTH_OK 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:37.174 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: Reconfiguring mon.b (monmap changed)... 2024-09-11T03:17:37.175 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:17:37.175 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-11T03:17:37.175 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:37.175 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:37 smithi165 ceph-mon[31795]: Reconfiguring daemon mon.b on smithi120 2024-09-11T03:17:37.285 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: mon.b calling monitor election 2024-09-11T03:17:37.285 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: mon.b calling monitor election 2024-09-11T03:17:37.285 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: mon.c calling monitor election 2024-09-11T03:17:37.285 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: mon.a calling monitor election 2024-09-11T03:17:37.285 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-11T03:17:37.285 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: monmap epoch 3 2024-09-11T03:17:37.285 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:17:37.285 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: last_changed 2024-09-11T03:17:29.325521+0000 2024-09-11T03:17:37.285 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: created 2024-09-11T03:15:38.656471+0000 2024-09-11T03:17:37.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: min_mon_release 19 (squid) 2024-09-11T03:17:37.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: election_strategy: 1 2024-09-11T03:17:37.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-09-11T03:17:37.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: 1: [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] mon.c 2024-09-11T03:17:37.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: 2: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.b 2024-09-11T03:17:37.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: fsmap 2024-09-11T03:17:37.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: osdmap e4: 0 total, 0 up, 0 in 2024-09-11T03:17:37.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: mgrmap e13: a(active, since 57s) 2024-09-11T03:17:37.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-11T03:17:37.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: Cluster is now healthy 2024-09-11T03:17:37.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: overall HEALTH_OK 2024-09-11T03:17:37.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:37.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:37.287 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: Reconfiguring mon.b (monmap changed)... 2024-09-11T03:17:37.287 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:17:37.287 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-11T03:17:37.287 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:37.287 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:37 smithi050 ceph-mon[29717]: Reconfiguring daemon mon.b on smithi120 2024-09-11T03:17:37.878 INFO:teuthology.orchestra.run.smithi050.stdout:# minimal ceph.conf for ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:17:37.879 INFO:teuthology.orchestra.run.smithi050.stdout:[global] 2024-09-11T03:17:37.879 INFO:teuthology.orchestra.run.smithi050.stdout: fsid = ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:17:37.879 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.120:3300/0,v1:172.21.15.120:6789/0] [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] 2024-09-11T03:17:38.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:38 smithi120 ceph-mon[31737]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:38.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:38 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:38.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:38 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:38.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:38 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:38.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:38 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:38.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:38 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/1506045207' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:38.172 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:38 smithi050 ceph-mon[29717]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:38.172 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:38 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:38.172 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:38 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:38.172 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:38 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:38.172 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:38 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:38.172 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:38 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1506045207' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:38.429 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:38 smithi165 ceph-mon[31795]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:38.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:38 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:17:38.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:38 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:38.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:38 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:38.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:38 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:38.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:38 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/1506045207' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:38.483 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-11T03:17:38.483 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:17:38.483 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/ceph/ceph.conf 2024-09-11T03:17:38.511 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:17:38.511 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-11T03:17:38.578 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-11T03:17:38.578 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/ceph/ceph.conf 2024-09-11T03:17:38.606 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-11T03:17:38.606 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-11T03:17:38.671 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-11T03:17:38.672 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/ceph/ceph.conf 2024-09-11T03:17:38.706 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-11T03:17:38.706 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-11T03:17:38.776 INFO:tasks.cephadm:Adding mgr.a on smithi050 2024-09-11T03:17:38.776 INFO:tasks.cephadm:Adding mgr.b on smithi120 2024-09-11T03:17:38.777 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph orch apply mgr '2;smithi050=a;smithi120=b' 2024-09-11T03:17:39.066 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T03:17:39.709 INFO:teuthology.orchestra.run.smithi165.stdout:Scheduled mgr update... 2024-09-11T03:17:39.929 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:39 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:39.929 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:39 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:39.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:39 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:39.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:39 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:39 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:39 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:39 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:39 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:39 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:39 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:39 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:39 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.350 DEBUG:teuthology.orchestra.run.smithi120:mgr.b> sudo journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mgr.b.service 2024-09-11T03:17:40.353 DEBUG:tasks.cephadm:set 0 configs 2024-09-11T03:17:40.353 INFO:tasks.cephadm:Deploying OSDs... 2024-09-11T03:17:40.353 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-11T03:17:40.353 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/scratch_devs of=/dev/stdout 2024-09-11T03:17:40.373 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-11T03:17:40.373 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_1 2024-09-11T03:17:40.433 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-11T03:17:40.433 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T03:17:40.433 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 976 Links: 1 2024-09-11T03:17:40.433 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T03:17:40.433 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T03:17:40.433 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-11 03:17:31.678336922 +0000 2024-09-11T03:17:40.433 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-11 03:09:03.783948611 +0000 2024-09-11T03:17:40.433 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-11 03:09:03.783948611 +0000 2024-09-11T03:17:40.434 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-09-11 03:09:03.783948611 +0000 2024-09-11T03:17:40.434 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-11T03:17:40.501 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-11T03:17:40.501 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-11T03:17:40.501 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.0001211 s, 4.2 MB/s 2024-09-11T03:17:40.503 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-11T03:17:40.562 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_2 2024-09-11T03:17:40.620 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-11T03:17:40.620 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T03:17:40.620 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 974 Links: 1 2024-09-11T03:17:40.620 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T03:17:40.620 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T03:17:40.620 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-11 03:17:31.679336897 +0000 2024-09-11T03:17:40.620 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-11 03:09:03.783948611 +0000 2024-09-11T03:17:40.620 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-11 03:09:03.783948611 +0000 2024-09-11T03:17:40.620 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-09-11 03:09:03.783948611 +0000 2024-09-11T03:17:40.621 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-11T03:17:40.688 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-11T03:17:40.688 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-11T03:17:40.688 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000127234 s, 4.0 MB/s 2024-09-11T03:17:40.689 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-11T03:17:40.749 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_3 2024-09-11T03:17:40.806 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-11T03:17:40.807 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T03:17:40.807 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 961 Links: 1 2024-09-11T03:17:40.807 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T03:17:40.807 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T03:17:40.807 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-11 03:17:31.679336897 +0000 2024-09-11T03:17:40.807 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-11 03:09:03.781948661 +0000 2024-09-11T03:17:40.807 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-11 03:09:03.781948661 +0000 2024-09-11T03:17:40.807 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-09-11 03:09:03.781948661 +0000 2024-09-11T03:17:40.807 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-11T03:17:40.871 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:40 smithi050 ceph-mon[29717]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:40.871 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:40 smithi050 ceph-mon[29717]: from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi050=a;smithi120=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:17:40.871 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:40 smithi050 ceph-mon[29717]: Saving service mgr spec with placement smithi050=a;smithi120=b;count:2 2024-09-11T03:17:40.871 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.871 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.871 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.871 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:17:40.871 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-11T03:17:40.871 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:40.873 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-11T03:17:40.873 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-11T03:17:40.873 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000113543 s, 4.5 MB/s 2024-09-11T03:17:40.874 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-11T03:17:40.898 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:40 smithi165 ceph-mon[31795]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:40.899 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:40 smithi165 ceph-mon[31795]: from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi050=a;smithi120=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:17:40.899 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:40 smithi165 ceph-mon[31795]: Saving service mgr spec with placement smithi050=a;smithi120=b;count:2 2024-09-11T03:17:40.899 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.899 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.899 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:40.899 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:17:40.899 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-11T03:17:40.899 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:40.933 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_4 2024-09-11T03:17:40.990 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-11T03:17:40.990 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T03:17:40.990 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 984 Links: 1 2024-09-11T03:17:40.990 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T03:17:40.990 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T03:17:40.990 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-11 03:17:31.680336872 +0000 2024-09-11T03:17:40.990 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-11 03:09:03.785948561 +0000 2024-09-11T03:17:40.990 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-11 03:09:03.785948561 +0000 2024-09-11T03:17:40.991 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-09-11 03:09:03.785948561 +0000 2024-09-11T03:17:40.991 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-11T03:17:41.055 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-11T03:17:41.056 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-11T03:17:41.056 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000111534 s, 4.6 MB/s 2024-09-11T03:17:41.057 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-11T03:17:41.115 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-11T03:17:41.115 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/scratch_devs of=/dev/stdout 2024-09-11T03:17:41.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:40 smithi120 ceph-mon[31737]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:41.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:40 smithi120 ceph-mon[31737]: from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi050=a;smithi120=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:17:41.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:40 smithi120 ceph-mon[31737]: Saving service mgr spec with placement smithi050=a;smithi120=b;count:2 2024-09-11T03:17:41.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:41.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:41.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:41.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:17:41.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-11T03:17:41.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:41.133 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-11T03:17:41.133 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_1 2024-09-11T03:17:41.190 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-11T03:17:41.190 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T03:17:41.190 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 973 Links: 1 2024-09-11T03:17:41.190 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T03:17:41.190 INFO:teuthology.orchestra.run.smithi120.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T03:17:41.190 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-11 03:17:37.863778298 +0000 2024-09-11T03:17:41.190 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-11 03:09:01.927875464 +0000 2024-09-11T03:17:41.190 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-11 03:09:01.927875464 +0000 2024-09-11T03:17:41.191 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: 2024-09-11 03:09:01.927875464 +0000 2024-09-11T03:17:41.191 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-11T03:17:41.256 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-11T03:17:41.256 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-11T03:17:41.256 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000222335 s, 2.3 MB/s 2024-09-11T03:17:41.257 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-11T03:17:41.315 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_2 2024-09-11T03:17:41.372 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-11T03:17:41.372 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T03:17:41.372 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 974 Links: 1 2024-09-11T03:17:41.372 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T03:17:41.372 INFO:teuthology.orchestra.run.smithi120.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T03:17:41.372 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-11 03:17:37.864778277 +0000 2024-09-11T03:17:41.372 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-11 03:09:01.927875464 +0000 2024-09-11T03:17:41.373 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-11 03:09:01.927875464 +0000 2024-09-11T03:17:41.373 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: 2024-09-11 03:09:01.927875464 +0000 2024-09-11T03:17:41.373 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-11T03:17:41.438 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-11T03:17:41.438 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-11T03:17:41.439 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000236996 s, 2.2 MB/s 2024-09-11T03:17:41.440 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-11T03:17:41.496 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_3 2024-09-11T03:17:41.552 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-11T03:17:41.552 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T03:17:41.552 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 967 Links: 1 2024-09-11T03:17:41.552 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T03:17:41.552 INFO:teuthology.orchestra.run.smithi120.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T03:17:41.553 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-11 03:17:37.864778277 +0000 2024-09-11T03:17:41.553 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-11 03:09:01.927875464 +0000 2024-09-11T03:17:41.553 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-11 03:09:01.927875464 +0000 2024-09-11T03:17:41.553 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: 2024-09-11 03:09:01.927875464 +0000 2024-09-11T03:17:41.553 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-11T03:17:41.617 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-11T03:17:41.617 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-11T03:17:41.617 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000188687 s, 2.7 MB/s 2024-09-11T03:17:41.619 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-11T03:17:41.674 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_4 2024-09-11T03:17:41.730 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-11T03:17:41.730 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T03:17:41.730 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 984 Links: 1 2024-09-11T03:17:41.730 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T03:17:41.730 INFO:teuthology.orchestra.run.smithi120.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T03:17:41.730 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-11 03:17:37.864778277 +0000 2024-09-11T03:17:41.730 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-11 03:09:01.928875442 +0000 2024-09-11T03:17:41.730 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-11 03:09:01.928875442 +0000 2024-09-11T03:17:41.731 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: 2024-09-11 03:09:01.928875442 +0000 2024-09-11T03:17:41.731 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-11T03:17:41.795 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-11T03:17:41.795 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-11T03:17:41.795 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000223929 s, 2.3 MB/s 2024-09-11T03:17:41.796 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-11T03:17:41.853 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-09-11T03:17:41.853 DEBUG:teuthology.orchestra.run.smithi165:> dd if=/scratch_devs of=/dev/stdout 2024-09-11T03:17:41.870 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-11T03:17:41.870 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/vg_nvme/lv_1 2024-09-11T03:17:41.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:41 smithi120 ceph-mon[31737]: Reconfiguring mon.c (monmap changed)... 2024-09-11T03:17:41.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:41 smithi120 ceph-mon[31737]: Reconfiguring daemon mon.c on smithi165 2024-09-11T03:17:41.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:41 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:41.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:41 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:41.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:41 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:41.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:41 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:41.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:41 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:41.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:41 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:41.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:41 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-11T03:17:41.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:41 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-11T03:17:41.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:41 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-11T03:17:41.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:41 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:41.926 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-11T03:17:41.926 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T03:17:41.926 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 968 Links: 1 2024-09-11T03:17:41.926 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T03:17:41.926 INFO:teuthology.orchestra.run.smithi165.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T03:17:41.926 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-09-11 03:17:36.793944025 +0000 2024-09-11T03:17:41.926 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-09-11 03:09:01.106961772 +0000 2024-09-11T03:17:41.926 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-09-11 03:09:01.106961772 +0000 2024-09-11T03:17:41.927 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: 2024-09-11 03:09:01.106961772 +0000 2024-09-11T03:17:41.927 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-11T03:17:41.929 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:41 smithi165 ceph-mon[31795]: Reconfiguring mon.c (monmap changed)... 2024-09-11T03:17:41.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:41 smithi165 ceph-mon[31795]: Reconfiguring daemon mon.c on smithi165 2024-09-11T03:17:41.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:41 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:41.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:41 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:41.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:41 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:41.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:41 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:41.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:41 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:41.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:41 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:41.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:41 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-11T03:17:41.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:41 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-11T03:17:41.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:41 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-11T03:17:41.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:41 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:41.954 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-09-11T03:17:41.955 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-09-11T03:17:41.955 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.000213723 s, 2.4 MB/s 2024-09-11T03:17:41.956 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-11T03:17:42.012 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/vg_nvme/lv_2 2024-09-11T03:17:42.067 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-11T03:17:42.067 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T03:17:42.067 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 974 Links: 1 2024-09-11T03:17:42.067 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T03:17:42.067 INFO:teuthology.orchestra.run.smithi165.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T03:17:42.067 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-09-11 03:17:36.794944009 +0000 2024-09-11T03:17:42.067 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-09-11 03:09:01.106961772 +0000 2024-09-11T03:17:42.068 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-09-11 03:09:01.106961772 +0000 2024-09-11T03:17:42.068 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: 2024-09-11 03:09:01.106961772 +0000 2024-09-11T03:17:42.068 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-11T03:17:42.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:41 smithi050 ceph-mon[29717]: Reconfiguring mon.c (monmap changed)... 2024-09-11T03:17:42.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:41 smithi050 ceph-mon[29717]: Reconfiguring daemon mon.c on smithi165 2024-09-11T03:17:42.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:41 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:42.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:41 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:42.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:41 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:42.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:41 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:42.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:41 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:42.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:41 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:42.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:41 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-11T03:17:42.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:41 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-11T03:17:42.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:41 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-11T03:17:42.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:41 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:42.131 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-09-11T03:17:42.131 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-09-11T03:17:42.131 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.000224514 s, 2.3 MB/s 2024-09-11T03:17:42.133 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-11T03:17:42.189 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/vg_nvme/lv_3 2024-09-11T03:17:42.244 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-11T03:17:42.244 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T03:17:42.244 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 984 Links: 1 2024-09-11T03:17:42.244 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T03:17:42.245 INFO:teuthology.orchestra.run.smithi165.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T03:17:42.245 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-09-11 03:17:36.794944009 +0000 2024-09-11T03:17:42.245 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-09-11 03:09:01.107962001 +0000 2024-09-11T03:17:42.245 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-09-11 03:09:01.107962001 +0000 2024-09-11T03:17:42.245 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: 2024-09-11 03:09:01.107962001 +0000 2024-09-11T03:17:42.245 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-11T03:17:42.308 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-09-11T03:17:42.308 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-09-11T03:17:42.308 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.00020267 s, 2.5 MB/s 2024-09-11T03:17:42.311 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-11T03:17:42.367 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/vg_nvme/lv_4 2024-09-11T03:17:42.423 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-11T03:17:42.423 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T03:17:42.424 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 967 Links: 1 2024-09-11T03:17:42.424 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T03:17:42.424 INFO:teuthology.orchestra.run.smithi165.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T03:17:42.424 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-09-11 03:17:36.794944009 +0000 2024-09-11T03:17:42.424 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-09-11 03:09:01.106961772 +0000 2024-09-11T03:17:42.424 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-09-11 03:09:01.106961772 +0000 2024-09-11T03:17:42.424 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: 2024-09-11 03:09:01.106961772 +0000 2024-09-11T03:17:42.424 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-11T03:17:42.487 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-09-11T03:17:42.487 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-09-11T03:17:42.487 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.000182087 s, 2.8 MB/s 2024-09-11T03:17:42.488 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-11T03:17:42.545 INFO:tasks.cephadm:Deploying osd.0 on smithi050 with /dev/vg_nvme/lv_4... 2024-09-11T03:17:42.545 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-11T03:17:42.806 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:17:42.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:42 smithi050 ceph-mon[29717]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:42.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:42 smithi050 ceph-mon[29717]: Deploying daemon mgr.b on smithi120 2024-09-11T03:17:42.987 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:42 smithi120 ceph-mon[31737]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:42.987 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:42 smithi120 ceph-mon[31737]: Deploying daemon mgr.b on smithi120 2024-09-11T03:17:43.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:42 smithi165 ceph-mon[31795]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:43.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:42 smithi165 ceph-mon[31795]: Deploying daemon mgr.b on smithi120 2024-09-11T03:17:43.624 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:17:43 smithi120 systemd[1]: Starting Ceph mgr.b for ff8a8a62-6feb-11ef-bcea-c7b262605968... 2024-09-11T03:17:43.976 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:17:43 smithi120 podman[33441]: 2024-09-11 03:17:43.540407204 +0000 UTC m=+0.015607536 image pull 589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e 2024-09-11T03:17:43.977 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:17:43 smithi120 podman[33441]: 2024-09-11 03:17:43.64023734 +0000 UTC m=+0.115437662 container create c2f51c92f6d2d44f7ee96661d6afb6dc77426f476c3add08caa6aef4f119afb7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-b, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, ceph=True, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2) 2024-09-11T03:17:43.977 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:17:43 smithi120 podman[33441]: 2024-09-11 03:17:43.976862905 +0000 UTC m=+0.452063224 container init c2f51c92f6d2d44f7ee96661d6afb6dc77426f476c3add08caa6aef4f119afb7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-b, GIT_CLEAN=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2) 2024-09-11T03:17:44.373 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:17:43 smithi120 podman[33441]: 2024-09-11 03:17:43.981818352 +0000 UTC m=+0.457018681 container start c2f51c92f6d2d44f7ee96661d6afb6dc77426f476c3add08caa6aef4f119afb7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-b, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.vendor=CentOS) 2024-09-11T03:17:44.374 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mgr[33479]: -- 172.21.15.120:0/2298424926 <== mon.2 v2:172.21.15.120:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x55d3516c30e0 con 0x55d3516a0800 2024-09-11T03:17:44.374 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:17:44 smithi120 bash[33441]: c2f51c92f6d2d44f7ee96661d6afb6dc77426f476c3add08caa6aef4f119afb7 2024-09-11T03:17:44.374 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:17:44 smithi120 systemd[1]: Started Ceph mgr.b for ff8a8a62-6feb-11ef-bcea-c7b262605968. 2024-09-11T03:17:44.960 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:44 smithi050 ceph-mon[29717]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:44.960 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:44 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:44.961 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:44 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:44.961 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:44 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:44.961 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:44 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:44.961 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:44 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:44.961 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:44 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:44.961 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:44 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:44.961 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:44 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:44.961 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:44 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-11T03:17:44.961 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:44 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-11T03:17:44.961 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:44 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:44.961 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:44 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:45.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mon[31737]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:45.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:45.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:45.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:45.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:45.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:45.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:45.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:45.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:45.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-11T03:17:45.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-11T03:17:45.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:45.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:44 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:45.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:44 smithi165 ceph-mon[31795]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:45.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:44 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:45.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:44 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:45.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:44 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:45.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:44 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:45.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:44 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:45.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:44 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:45.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:44 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:45.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:44 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:45.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:44 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-11T03:17:45.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:44 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-11T03:17:45.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:44 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:45.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:44 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:45.272 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:17:45.296 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi050:vg_nvme/lv_4 2024-09-11T03:17:45.847 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:45 smithi050 ceph-mon[29717]: Metadata not up to date on all hosts. Skipping non agent specs 2024-09-11T03:17:45.847 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:45 smithi050 ceph-mon[29717]: Reconfiguring mgr.a (unknown last config time)... 2024-09-11T03:17:45.847 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:45 smithi050 ceph-mon[29717]: Reconfiguring daemon mgr.a on smithi050 2024-09-11T03:17:45.915 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:45 smithi120 ceph-mon[31737]: Metadata not up to date on all hosts. Skipping non agent specs 2024-09-11T03:17:45.915 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:45 smithi120 ceph-mon[31737]: Reconfiguring mgr.a (unknown last config time)... 2024-09-11T03:17:45.915 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:45 smithi120 ceph-mon[31737]: Reconfiguring daemon mgr.a on smithi050 2024-09-11T03:17:46.072 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:17:46.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:45 smithi165 ceph-mon[31795]: Metadata not up to date on all hosts. Skipping non agent specs 2024-09-11T03:17:46.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:45 smithi165 ceph-mon[31795]: Reconfiguring mgr.a (unknown last config time)... 2024-09-11T03:17:46.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:45 smithi165 ceph-mon[31795]: Reconfiguring daemon mgr.a on smithi050 2024-09-11T03:17:47.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:46 smithi120 ceph-mon[31737]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:47.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:46 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:47.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:46 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:47.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:46 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:47.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:46 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:47.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:46 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:47.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:46 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:47.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:46 smithi050 ceph-mon[29717]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:47.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:46 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:47.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:46 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:47.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:46 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:47.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:46 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:47.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:46 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:47.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:46 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:47.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:46 smithi165 ceph-mon[31795]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:47.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:46 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:47.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:46 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:47.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:46 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:47.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:46 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:47.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:46 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:47.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:46 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:47.867 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:47 smithi120 ceph-mon[31737]: Metadata not up to date on all hosts. Skipping non agent specs 2024-09-11T03:17:47.867 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:47 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:17:47.867 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:47 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:17:47.868 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:47 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:48.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:47 smithi050 ceph-mon[29717]: Metadata not up to date on all hosts. Skipping non agent specs 2024-09-11T03:17:48.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:47 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:17:48.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:47 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:17:48.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:47 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:48.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:47 smithi165 ceph-mon[31795]: Metadata not up to date on all hosts. Skipping non agent specs 2024-09-11T03:17:48.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:47 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:17:48.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:47 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:17:48.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:47 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:49.046 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:48 smithi050 ceph-mon[29717]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:49.046 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:48 smithi050 ceph-mon[29717]: from='client.14226 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:17:49.047 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:48 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.047 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:48 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.047 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:48 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.047 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:48 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:49.047 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:48 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.047 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:48 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:49.047 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:48 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:49.047 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:48 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:48 smithi120 ceph-mon[31737]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:49.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:48 smithi120 ceph-mon[31737]: from='client.14226 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:17:49.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:48 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:48 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:48 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:48 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:49.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:48 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:48 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:49.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:48 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:49.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:48 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:48 smithi165 ceph-mon[31795]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:49.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:48 smithi165 ceph-mon[31795]: from='client.14226 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:17:49.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:48 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:48 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:48 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:48 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:17:49.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:48 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:49.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:48 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:49.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:48 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:17:49.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:48 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:50.081 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:49 smithi165 ceph-mon[31795]: Standby manager daemon b started 2024-09-11T03:17:50.081 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:49 smithi165 ceph-mon[31795]: from='mgr.? 172.21.15.120:0/1517160320' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-11T03:17:50.081 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:49 smithi165 ceph-mon[31795]: from='mgr.? 172.21.15.120:0/1517160320' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-11T03:17:50.081 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:49 smithi165 ceph-mon[31795]: from='mgr.? 172.21.15.120:0/1517160320' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-11T03:17:50.082 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:49 smithi165 ceph-mon[31795]: from='mgr.? 172.21.15.120:0/1517160320' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-11T03:17:50.082 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:49 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/1619243466' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cabbdbb5-0d64-42c9-b3fc-0092af90e837"} : dispatch 2024-09-11T03:17:50.082 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:49 smithi165 ceph-mon[31795]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cabbdbb5-0d64-42c9-b3fc-0092af90e837"} : dispatch 2024-09-11T03:17:50.082 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:49 smithi165 ceph-mon[31795]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cabbdbb5-0d64-42c9-b3fc-0092af90e837"}]': finished 2024-09-11T03:17:50.082 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:49 smithi165 ceph-mon[31795]: osdmap e5: 1 total, 0 up, 1 in 2024-09-11T03:17:50.082 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:49 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:17:50.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:49 smithi120 ceph-mon[31737]: Standby manager daemon b started 2024-09-11T03:17:50.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:49 smithi120 ceph-mon[31737]: from='mgr.? 172.21.15.120:0/1517160320' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-11T03:17:50.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:49 smithi120 ceph-mon[31737]: from='mgr.? 172.21.15.120:0/1517160320' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-11T03:17:50.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:49 smithi120 ceph-mon[31737]: from='mgr.? 172.21.15.120:0/1517160320' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-11T03:17:50.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:49 smithi120 ceph-mon[31737]: from='mgr.? 172.21.15.120:0/1517160320' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-11T03:17:50.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:49 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/1619243466' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cabbdbb5-0d64-42c9-b3fc-0092af90e837"} : dispatch 2024-09-11T03:17:50.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:49 smithi120 ceph-mon[31737]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cabbdbb5-0d64-42c9-b3fc-0092af90e837"} : dispatch 2024-09-11T03:17:50.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:49 smithi120 ceph-mon[31737]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cabbdbb5-0d64-42c9-b3fc-0092af90e837"}]': finished 2024-09-11T03:17:50.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:49 smithi120 ceph-mon[31737]: osdmap e5: 1 total, 0 up, 1 in 2024-09-11T03:17:50.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:49 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:17:50.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:49 smithi050 ceph-mon[29717]: Standby manager daemon b started 2024-09-11T03:17:50.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:49 smithi050 ceph-mon[29717]: from='mgr.? 172.21.15.120:0/1517160320' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-11T03:17:50.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:49 smithi050 ceph-mon[29717]: from='mgr.? 172.21.15.120:0/1517160320' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-11T03:17:50.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:49 smithi050 ceph-mon[29717]: from='mgr.? 172.21.15.120:0/1517160320' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-11T03:17:50.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:49 smithi050 ceph-mon[29717]: from='mgr.? 172.21.15.120:0/1517160320' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-11T03:17:50.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:49 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1619243466' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cabbdbb5-0d64-42c9-b3fc-0092af90e837"} : dispatch 2024-09-11T03:17:50.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:49 smithi050 ceph-mon[29717]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cabbdbb5-0d64-42c9-b3fc-0092af90e837"} : dispatch 2024-09-11T03:17:50.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:49 smithi050 ceph-mon[29717]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cabbdbb5-0d64-42c9-b3fc-0092af90e837"}]': finished 2024-09-11T03:17:50.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:49 smithi050 ceph-mon[29717]: osdmap e5: 1 total, 0 up, 1 in 2024-09-11T03:17:50.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:49 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:17:50.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:50 smithi050 ceph-mon[29717]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:50.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:50 smithi050 ceph-mon[29717]: mgrmap e14: a(active, since 70s), standbys: b 2024-09-11T03:17:50.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:50 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-11T03:17:50.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:50 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1172783725' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:17:51.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:50 smithi120 ceph-mon[31737]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:51.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:50 smithi120 ceph-mon[31737]: mgrmap e14: a(active, since 70s), standbys: b 2024-09-11T03:17:51.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:50 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-11T03:17:51.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:50 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/1172783725' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:17:51.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:50 smithi165 ceph-mon[31795]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:51.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:50 smithi165 ceph-mon[31795]: mgrmap e14: a(active, since 70s), standbys: b 2024-09-11T03:17:51.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:50 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-11T03:17:51.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:50 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/1172783725' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:17:53.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:52 smithi120 ceph-mon[31737]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:53.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:52 smithi050 ceph-mon[29717]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:53.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:52 smithi165 ceph-mon[31795]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:54.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:54 smithi050 ceph-mon[29717]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:54.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:54.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:54.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:54.820 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:54 smithi165 ceph-mon[31795]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:54.820 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:54 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:54.820 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:54 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:54.820 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:54 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:54.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:54 smithi120 ceph-mon[31737]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:54.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:54.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:54.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:56.578 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:56 smithi165 ceph-mon[31795]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:56.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:56 smithi050 ceph-mon[29717]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:56.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:56 smithi120 ceph-mon[31737]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:58 smithi050 ceph-mon[29717]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-11T03:17:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:58.929 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:58 smithi165 ceph-mon[31795]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:58.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:58.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:58.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:58.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-11T03:17:58.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:59.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:58 smithi120 ceph-mon[31737]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:17:59.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:59.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:59.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:17:59.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-11T03:17:59.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:17:59.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:17:59 smithi050 ceph-mon[29717]: Deploying daemon osd.0 on smithi050 2024-09-11T03:17:59.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:17:59 smithi165 ceph-mon[31795]: Deploying daemon osd.0 on smithi050 2024-09-11T03:17:59.937 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:17:59 smithi120 ceph-mon[31737]: Deploying daemon osd.0 on smithi050 2024-09-11T03:18:00.807 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:00 smithi050 ceph-mon[29717]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:00.929 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:00 smithi165 ceph-mon[31795]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:01.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:00 smithi120 ceph-mon[31737]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:02.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:02 smithi165 ceph-mon[31795]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:03.063 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:02 smithi050 ceph-mon[29717]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:03.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:02 smithi120 ceph-mon[31737]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:04.975 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:04 smithi050 ceph-mon[29717]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:04.975 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:04.975 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:04.975 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:04.975 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:04.975 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:04.975 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:04.998 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:04 smithi120 ceph-mon[31737]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:04.999 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:04 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:04.999 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:04 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:04.999 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:04 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:04.999 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:04 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:04.999 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:04 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:04.999 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:04 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:05.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:04 smithi165 ceph-mon[31795]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:05.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:04 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:05.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:04 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:05.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:04 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:05.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:04 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:05.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:04 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:05.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:04 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:07.049 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:06 smithi120 ceph-mon[31737]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:07.050 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:06 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:07.050 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:06 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:07.050 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:06 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:07.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:06 smithi050 ceph-mon[29717]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:07.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:07.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:07.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:07.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:06 smithi165 ceph-mon[31795]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:07.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:06 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:07.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:06 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:07.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:06 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:07.908 INFO:teuthology.orchestra.run.smithi050.stdout:Created osd(s) 0 on host 'smithi050' 2024-09-11T03:18:08.568 DEBUG:teuthology.orchestra.run.smithi050:osd.0> sudo journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.0.service 2024-09-11T03:18:08.571 INFO:tasks.cephadm:Deploying osd.1 on smithi050 with /dev/vg_nvme/lv_3... 2024-09-11T03:18:08.571 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-11T03:18:08.863 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:18:08.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:08 smithi050 ceph-mon[29717]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:08.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:08.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:08.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-11T03:18:08.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:08.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:08.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:08.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:08.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:08 smithi120 ceph-mon[31737]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:08 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:08 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:08 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-11T03:18:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:08 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:08 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:08 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:08 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:08 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:09.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:08 smithi165 ceph-mon[31795]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:09.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:08 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:09.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:08 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:09.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:08 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-11T03:18:09.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:08 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:09.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:08 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:09.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:08 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:09.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:08 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:09.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:08 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:09.609 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:18:09 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0[41081]: 2024-09-11T03:18:09.560+0000 7f35082ea640 -1 osd.0 0 log_to_monitors true 2024-09-11T03:18:09.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:09 smithi050 ceph-mon[29717]: Adjusting osd_memory_target on smithi050 to 16068M 2024-09-11T03:18:09.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:09 smithi050 ceph-mon[29717]: from='osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-11T03:18:10.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:09 smithi120 ceph-mon[31737]: Adjusting osd_memory_target on smithi050 to 16068M 2024-09-11T03:18:10.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:09 smithi120 ceph-mon[31737]: from='osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-11T03:18:10.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:09 smithi165 ceph-mon[31795]: Adjusting osd_memory_target on smithi050 to 16068M 2024-09-11T03:18:10.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:09 smithi165 ceph-mon[31795]: from='osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-11T03:18:10.758 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:18:10 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0[41081]: 2024-09-11T03:18:10.697+0000 7f350426d640 -1 osd.0 0 waiting for initial osdmap 2024-09-11T03:18:10.758 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:18:10 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0[41081]: 2024-09-11T03:18:10.701+0000 7f3500094640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-11T03:18:10.758 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:10 smithi050 ceph-mon[29717]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:10.759 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:10 smithi050 ceph-mon[29717]: from='osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-11T03:18:10.759 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:10 smithi050 ceph-mon[29717]: osdmap e6: 1 total, 0 up, 1 in 2024-09-11T03:18:10.759 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:10 smithi050 ceph-mon[29717]: from='osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-11T03:18:10.759 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:10 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:10.960 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:10 smithi120 ceph-mon[31737]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:10.960 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:10 smithi120 ceph-mon[31737]: from='osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-11T03:18:10.960 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:10 smithi120 ceph-mon[31737]: osdmap e6: 1 total, 0 up, 1 in 2024-09-11T03:18:10.960 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:10 smithi120 ceph-mon[31737]: from='osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-11T03:18:10.960 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:10 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:11.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:10 smithi165 ceph-mon[31795]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:11.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:10 smithi165 ceph-mon[31795]: from='osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-11T03:18:11.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:10 smithi165 ceph-mon[31795]: osdmap e6: 1 total, 0 up, 1 in 2024-09-11T03:18:11.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:10 smithi165 ceph-mon[31795]: from='osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-11T03:18:11.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:10 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:11.874 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:11 smithi050 ceph-mon[29717]: from='osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-11T03:18:11.874 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:11 smithi050 ceph-mon[29717]: osdmap e7: 1 total, 0 up, 1 in 2024-09-11T03:18:11.874 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:11.874 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:11.877 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:18:11.908 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi050:vg_nvme/lv_3 2024-09-11T03:18:12.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:11 smithi120 ceph-mon[31737]: from='osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-11T03:18:12.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:11 smithi120 ceph-mon[31737]: osdmap e7: 1 total, 0 up, 1 in 2024-09-11T03:18:12.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:11 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:12.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:11 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:12.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:11 smithi165 ceph-mon[31795]: from='osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-11T03:18:12.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:11 smithi165 ceph-mon[31795]: osdmap e7: 1 total, 0 up, 1 in 2024-09-11T03:18:12.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:11 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:12.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:11 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:12.194 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:18:12.846 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:12 smithi050 ceph-mon[29717]: purged_snaps scrub starts 2024-09-11T03:18:12.846 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:12 smithi050 ceph-mon[29717]: purged_snaps scrub ok 2024-09-11T03:18:12.846 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:12 smithi050 ceph-mon[29717]: pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:12.846 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:12.847 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:12 smithi050 ceph-mon[29717]: osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911] boot 2024-09-11T03:18:12.847 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:12 smithi050 ceph-mon[29717]: osdmap e8: 1 total, 1 up, 1 in 2024-09-11T03:18:12.847 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:12.847 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:12.847 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:12.847 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:13.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:12 smithi120 ceph-mon[31737]: purged_snaps scrub starts 2024-09-11T03:18:13.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:12 smithi120 ceph-mon[31737]: purged_snaps scrub ok 2024-09-11T03:18:13.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:12 smithi120 ceph-mon[31737]: pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:13.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:12 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:13.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:12 smithi120 ceph-mon[31737]: osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911] boot 2024-09-11T03:18:13.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:12 smithi120 ceph-mon[31737]: osdmap e8: 1 total, 1 up, 1 in 2024-09-11T03:18:13.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:12 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:13.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:12 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:13.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:12 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:13.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:12 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:13.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:12 smithi165 ceph-mon[31795]: purged_snaps scrub starts 2024-09-11T03:18:13.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:12 smithi165 ceph-mon[31795]: purged_snaps scrub ok 2024-09-11T03:18:13.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:12 smithi165 ceph-mon[31795]: pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T03:18:13.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:12 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:13.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:12 smithi165 ceph-mon[31795]: osd.0 [v2:172.21.15.50:6802/1323814911,v1:172.21.15.50:6803/1323814911] boot 2024-09-11T03:18:13.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:12 smithi165 ceph-mon[31795]: osdmap e8: 1 total, 1 up, 1 in 2024-09-11T03:18:13.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:12 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-11T03:18:13.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:12 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:13.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:12 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:13.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:12 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:13.850 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:13 smithi050 ceph-mon[29717]: Detected new or changed devices on smithi050 2024-09-11T03:18:13.850 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:13 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:18:13.850 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:13 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:18:13.850 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:13 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:13.850 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:13 smithi050 ceph-mon[29717]: osdmap e9: 1 total, 1 up, 1 in 2024-09-11T03:18:14.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:13 smithi120 ceph-mon[31737]: Detected new or changed devices on smithi050 2024-09-11T03:18:14.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:13 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:18:14.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:13 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:18:14.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:13 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:14.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:13 smithi120 ceph-mon[31737]: osdmap e9: 1 total, 1 up, 1 in 2024-09-11T03:18:14.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:13 smithi165 ceph-mon[31795]: Detected new or changed devices on smithi050 2024-09-11T03:18:14.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:13 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:18:14.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:13 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:18:14.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:13 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:14.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:13 smithi165 ceph-mon[31795]: osdmap e9: 1 total, 1 up, 1 in 2024-09-11T03:18:15.044 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:14 smithi050 ceph-mon[29717]: from='client.14253 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:18:15.045 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:14 smithi050 ceph-mon[29717]: pgmap v45: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:15.061 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:14 smithi165 ceph-mon[31795]: from='client.14253 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:18:15.061 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:14 smithi165 ceph-mon[31795]: pgmap v45: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:15.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:14 smithi120 ceph-mon[31737]: from='client.14253 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:18:15.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:14 smithi120 ceph-mon[31737]: pgmap v45: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:16.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:16 smithi165 ceph-mon[31795]: pgmap v47: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:17.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:16 smithi120 ceph-mon[31737]: pgmap v47: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:17.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:16 smithi050 ceph-mon[29717]: pgmap v47: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:18.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:17 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/1429633474' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f52d109e-b88b-410b-b232-36a68dd95b5f"} : dispatch 2024-09-11T03:18:18.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:17 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/1429633474' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f52d109e-b88b-410b-b232-36a68dd95b5f"}]': finished 2024-09-11T03:18:18.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:17 smithi120 ceph-mon[31737]: osdmap e10: 2 total, 1 up, 2 in 2024-09-11T03:18:18.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:17 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:18.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:17 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/4085924551' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:18:18.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:17 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1429633474' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f52d109e-b88b-410b-b232-36a68dd95b5f"} : dispatch 2024-09-11T03:18:18.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:17 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1429633474' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f52d109e-b88b-410b-b232-36a68dd95b5f"}]': finished 2024-09-11T03:18:18.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:17 smithi050 ceph-mon[29717]: osdmap e10: 2 total, 1 up, 2 in 2024-09-11T03:18:18.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:17 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:18.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:17 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/4085924551' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:18:18.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:17 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/1429633474' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f52d109e-b88b-410b-b232-36a68dd95b5f"} : dispatch 2024-09-11T03:18:18.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:17 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/1429633474' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f52d109e-b88b-410b-b232-36a68dd95b5f"}]': finished 2024-09-11T03:18:18.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:17 smithi165 ceph-mon[31795]: osdmap e10: 2 total, 1 up, 2 in 2024-09-11T03:18:18.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:17 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:18.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:17 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/4085924551' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:18:19.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:18 smithi120 ceph-mon[31737]: pgmap v48: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:19.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:18 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:19.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:18 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:19.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:18 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:19.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:18 smithi050 ceph-mon[29717]: pgmap v48: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:19.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:18 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:19.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:18 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:19.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:18 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:19.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:18 smithi165 ceph-mon[31795]: pgmap v48: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:19.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:18 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:19.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:18 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:19.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:18 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:21.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:20 smithi120 ceph-mon[31737]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:21.127 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:20 smithi050 ceph-mon[29717]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:21.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:20 smithi165 ceph-mon[31795]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:23.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:22 smithi120 ceph-mon[31737]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:23.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:22 smithi050 ceph-mon[29717]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:23.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:22 smithi165 ceph-mon[31795]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:24.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:24 smithi120 ceph-mon[31737]: pgmap v52: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:24.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:24 smithi050 ceph-mon[29717]: pgmap v52: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:25.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:24 smithi165 ceph-mon[31795]: pgmap v52: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:25.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-11T03:18:25.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:26.112 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-11T03:18:26.112 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:26.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:25 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-11T03:18:26.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:25 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:26 smithi050 ceph-mon[29717]: Deploying daemon osd.1 on smithi050 2024-09-11T03:18:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:26 smithi050 ceph-mon[29717]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:27.122 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:26 smithi120 ceph-mon[31737]: Deploying daemon osd.1 on smithi050 2024-09-11T03:18:27.122 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:26 smithi120 ceph-mon[31737]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:27.122 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:27.122 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:27.122 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:27.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:26 smithi165 ceph-mon[31795]: Deploying daemon osd.1 on smithi050 2024-09-11T03:18:27.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:26 smithi165 ceph-mon[31795]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:27.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:26 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:27.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:26 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:27.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:26 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:28.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:28 smithi050 ceph-mon[29717]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:29.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:28 smithi120 ceph-mon[31737]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:29.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:28 smithi165 ceph-mon[31795]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:31.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:30 smithi120 ceph-mon[31737]: pgmap v55: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:31.127 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:30 smithi050 ceph-mon[29717]: pgmap v55: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:31.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:30 smithi165 ceph-mon[31795]: pgmap v55: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:32.118 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:32.118 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.119 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:32.119 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:32.119 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.119 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.119 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.119 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.119 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:32.119 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.119 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:32.119 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:32.119 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:32.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:32.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:32.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:32.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:32.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:32.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:32.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:32.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:32.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:32.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:32.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:32.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:32.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:33.101 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:32 smithi050 ceph-mon[29717]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:33.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:32 smithi120 ceph-mon[31737]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:33.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:32 smithi165 ceph-mon[31795]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:35.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:34 smithi120 ceph-mon[31737]: pgmap v57: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:35.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:34 smithi050 ceph-mon[29717]: pgmap v57: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:35.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:34 smithi165 ceph-mon[31795]: pgmap v57: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:36.170 INFO:teuthology.orchestra.run.smithi050.stdout:Created osd(s) 1 on host 'smithi050' 2024-09-11T03:18:36.324 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:36 smithi165 ceph-mon[31795]: pgmap v58: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:36.324 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:36 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:36.324 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:36 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:36.324 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:36 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:36.324 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:36 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:36.324 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:36 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:36.325 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:36 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:36.325 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:36 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:36.325 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:36 smithi165 ceph-mon[31795]: from='osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-11T03:18:36.534 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:36 smithi050 ceph-mon[29717]: pgmap v58: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:36.534 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:36 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:36.534 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:36 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:36.534 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:36 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:36.534 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:36 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:36.534 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:36 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:36.534 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:36 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:36.534 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:36 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:36.534 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:36 smithi050 ceph-mon[29717]: from='osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-11T03:18:36.623 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:36 smithi120 ceph-mon[31737]: pgmap v58: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:36.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:36.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:36.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:36.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:36.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:36.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:36.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:36 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:36.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:36 smithi120 ceph-mon[31737]: from='osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-11T03:18:36.844 DEBUG:teuthology.orchestra.run.smithi050:osd.1> sudo journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.1.service 2024-09-11T03:18:36.846 INFO:tasks.cephadm:Deploying osd.2 on smithi120 with /dev/vg_nvme/lv_4... 2024-09-11T03:18:36.846 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-11T03:18:37.100 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.b/config 2024-09-11T03:18:37.364 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:37.364 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:37.364 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-11T03:18:37.364 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-11T03:18:37.364 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:37.364 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: Adjusting osd_memory_target on smithi050 to 8034M 2024-09-11T03:18:37.364 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:37.364 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:37.364 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:37.364 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:37.364 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: from='osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-11T03:18:37.365 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: osdmap e11: 2 total, 1 up, 2 in 2024-09-11T03:18:37.365 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: from='osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-11T03:18:37.365 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:37 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:37.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:37.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:37.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-11T03:18:37.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-11T03:18:37.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:37.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: Adjusting osd_memory_target on smithi050 to 8034M 2024-09-11T03:18:37.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:37.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:37.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:37.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:37.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: from='osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-11T03:18:37.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: osdmap e11: 2 total, 1 up, 2 in 2024-09-11T03:18:37.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: from='osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-11T03:18:37.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:37.489 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:37.489 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:37.489 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-11T03:18:37.489 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-11T03:18:37.490 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:37.490 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: Adjusting osd_memory_target on smithi050 to 8034M 2024-09-11T03:18:37.490 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:37.490 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:37.490 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:37.490 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:37.490 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: from='osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-11T03:18:37.490 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: osdmap e11: 2 total, 1 up, 2 in 2024-09-11T03:18:37.490 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: from='osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-11T03:18:37.490 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:37 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:37.878 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1[44769]: 2024-09-11T03:18:37.824+0000 7fb85424a640 -1 osd.1 0 waiting for initial osdmap 2024-09-11T03:18:37.878 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:18:37 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1[44769]: 2024-09-11T03:18:37.827+0000 7fb850071640 -1 osd.1 12 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-11T03:18:39.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:38 smithi120 ceph-mon[31737]: pgmap v60: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:39.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:38 smithi120 ceph-mon[31737]: from='osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-11T03:18:39.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:38 smithi120 ceph-mon[31737]: osdmap e12: 2 total, 1 up, 2 in 2024-09-11T03:18:39.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:38 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:39.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:38 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:39.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:38 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:39.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:38 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:39.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:38 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:39.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:38 smithi050 ceph-mon[29717]: pgmap v60: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:39.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:38 smithi050 ceph-mon[29717]: from='osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-11T03:18:39.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:38 smithi050 ceph-mon[29717]: osdmap e12: 2 total, 1 up, 2 in 2024-09-11T03:18:39.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:38 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:39.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:38 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:39.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:38 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:39.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:38 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:39.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:38 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:39.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:38 smithi165 ceph-mon[31795]: pgmap v60: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:39.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:38 smithi165 ceph-mon[31795]: from='osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-11T03:18:39.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:38 smithi165 ceph-mon[31795]: osdmap e12: 2 total, 1 up, 2 in 2024-09-11T03:18:39.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:38 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:39.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:38 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:39.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:38 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:39.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:38 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:39.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:38 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:39.444 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:18:39.468 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi120:vg_nvme/lv_4 2024-09-11T03:18:39.708 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.b/config 2024-09-11T03:18:40.076 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:39 smithi120 ceph-mon[31737]: purged_snaps scrub starts 2024-09-11T03:18:40.076 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:39 smithi120 ceph-mon[31737]: purged_snaps scrub ok 2024-09-11T03:18:40.076 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:39 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:40.076 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:39 smithi120 ceph-mon[31737]: osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187] boot 2024-09-11T03:18:40.076 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:39 smithi120 ceph-mon[31737]: osdmap e13: 2 total, 2 up, 2 in 2024-09-11T03:18:40.076 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:39 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:40.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:39 smithi050 ceph-mon[29717]: purged_snaps scrub starts 2024-09-11T03:18:40.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:39 smithi050 ceph-mon[29717]: purged_snaps scrub ok 2024-09-11T03:18:40.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:39 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:40.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:39 smithi050 ceph-mon[29717]: osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187] boot 2024-09-11T03:18:40.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:39 smithi050 ceph-mon[29717]: osdmap e13: 2 total, 2 up, 2 in 2024-09-11T03:18:40.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:39 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:40.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:39 smithi165 ceph-mon[31795]: purged_snaps scrub starts 2024-09-11T03:18:40.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:39 smithi165 ceph-mon[31795]: purged_snaps scrub ok 2024-09-11T03:18:40.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:39 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:40.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:39 smithi165 ceph-mon[31795]: osd.1 [v2:172.21.15.50:6810/3226237187,v1:172.21.15.50:6811/3226237187] boot 2024-09-11T03:18:40.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:39 smithi165 ceph-mon[31795]: osdmap e13: 2 total, 2 up, 2 in 2024-09-11T03:18:40.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:39 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-11T03:18:41.073 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:40 smithi120 ceph-mon[31737]: pgmap v63: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:41.073 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:40 smithi120 ceph-mon[31737]: osdmap e14: 2 total, 2 up, 2 in 2024-09-11T03:18:41.074 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:18:41.074 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:18:41.074 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:41.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:40 smithi050 ceph-mon[29717]: pgmap v63: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:41.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:40 smithi050 ceph-mon[29717]: osdmap e14: 2 total, 2 up, 2 in 2024-09-11T03:18:41.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:18:41.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:18:41.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:41.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:40 smithi165 ceph-mon[31795]: pgmap v63: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-11T03:18:41.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:40 smithi165 ceph-mon[31795]: osdmap e14: 2 total, 2 up, 2 in 2024-09-11T03:18:41.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:18:41.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:18:41.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:42.055 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:41 smithi120 ceph-mon[31737]: from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi120:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:18:42.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:41 smithi050 ceph-mon[29717]: from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi120:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:18:42.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:41 smithi165 ceph-mon[31795]: from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi120:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:18:43.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:42 smithi120 ceph-mon[31737]: pgmap v65: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:43.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:42 smithi120 ceph-mon[31737]: from='client.? 172.21.15.120:0/196273836' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "70825d11-93af-4242-9a81-c4e78cdd81bc"} : dispatch 2024-09-11T03:18:43.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:42 smithi120 ceph-mon[31737]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "70825d11-93af-4242-9a81-c4e78cdd81bc"} : dispatch 2024-09-11T03:18:43.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:42 smithi120 ceph-mon[31737]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "70825d11-93af-4242-9a81-c4e78cdd81bc"}]': finished 2024-09-11T03:18:43.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:42 smithi120 ceph-mon[31737]: osdmap e15: 3 total, 2 up, 3 in 2024-09-11T03:18:43.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:42 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:18:43.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:42 smithi050 ceph-mon[29717]: pgmap v65: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:43.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:42 smithi050 ceph-mon[29717]: from='client.? 172.21.15.120:0/196273836' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "70825d11-93af-4242-9a81-c4e78cdd81bc"} : dispatch 2024-09-11T03:18:43.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:42 smithi050 ceph-mon[29717]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "70825d11-93af-4242-9a81-c4e78cdd81bc"} : dispatch 2024-09-11T03:18:43.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:42 smithi050 ceph-mon[29717]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "70825d11-93af-4242-9a81-c4e78cdd81bc"}]': finished 2024-09-11T03:18:43.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:42 smithi050 ceph-mon[29717]: osdmap e15: 3 total, 2 up, 3 in 2024-09-11T03:18:43.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:42 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:18:43.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:42 smithi165 ceph-mon[31795]: pgmap v65: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:43.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:42 smithi165 ceph-mon[31795]: from='client.? 172.21.15.120:0/196273836' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "70825d11-93af-4242-9a81-c4e78cdd81bc"} : dispatch 2024-09-11T03:18:43.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:42 smithi165 ceph-mon[31795]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "70825d11-93af-4242-9a81-c4e78cdd81bc"} : dispatch 2024-09-11T03:18:43.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:42 smithi165 ceph-mon[31795]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "70825d11-93af-4242-9a81-c4e78cdd81bc"}]': finished 2024-09-11T03:18:43.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:42 smithi165 ceph-mon[31795]: osdmap e15: 3 total, 2 up, 3 in 2024-09-11T03:18:43.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:42 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:18:44.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:43 smithi120 ceph-mon[31737]: from='client.? 172.21.15.120:0/1998136080' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:18:44.127 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:43 smithi050 ceph-mon[29717]: from='client.? 172.21.15.120:0/1998136080' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:18:44.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:43 smithi165 ceph-mon[31795]: from='client.? 172.21.15.120:0/1998136080' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:18:45.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:44 smithi120 ceph-mon[31737]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:45.127 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:44 smithi050 ceph-mon[29717]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:45.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:44 smithi165 ceph-mon[31795]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:46.991 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:46 smithi120 ceph-mon[31737]: pgmap v68: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:47.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:46 smithi050 ceph-mon[29717]: pgmap v68: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:47.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:46 smithi165 ceph-mon[31795]: pgmap v68: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:48.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:47 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:48.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:47 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:48.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:47 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:48.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:47 smithi120 ceph-mon[31737]: pgmap v69: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:48.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:47 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:48.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:47 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:48.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:47 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:48.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:47 smithi050 ceph-mon[29717]: pgmap v69: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:48.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:47 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:48.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:47 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:48.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:47 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:48.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:47 smithi165 ceph-mon[31795]: pgmap v69: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:50.263 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:50 smithi120 ceph-mon[31737]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:50.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:50 smithi050 ceph-mon[29717]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:50.429 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:50 smithi165 ceph-mon[31795]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:51.252 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:51 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-11T03:18:51.253 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:51 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:51.253 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:51 smithi120 ceph-mon[31737]: Deploying daemon osd.2 on smithi120 2024-09-11T03:18:51.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-11T03:18:51.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:51 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:51.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:51 smithi050 ceph-mon[29717]: Deploying daemon osd.2 on smithi120 2024-09-11T03:18:51.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:51 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-11T03:18:51.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:51 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:51.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:51 smithi165 ceph-mon[31795]: Deploying daemon osd.2 on smithi120 2024-09-11T03:18:52.235 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:52 smithi120 ceph-mon[31737]: pgmap v71: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:52.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:52 smithi050 ceph-mon[29717]: pgmap v71: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:52.429 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:52 smithi165 ceph-mon[31795]: pgmap v71: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:54.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:54 smithi050 ceph-mon[29717]: pgmap v72: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:54.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:54.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:54.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:54 smithi050 ceph-mon[29717]: Detected new or changed devices on smithi050 2024-09-11T03:18:54.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:54 smithi120 ceph-mon[31737]: pgmap v72: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:54 smithi120 ceph-mon[31737]: Detected new or changed devices on smithi050 2024-09-11T03:18:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:54.679 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:54 smithi165 ceph-mon[31795]: pgmap v72: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:54.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:54 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:54.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:54 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:54.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:54 smithi165 ceph-mon[31795]: Detected new or changed devices on smithi050 2024-09-11T03:18:54.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:54 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:56.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:56 smithi165 ceph-mon[31795]: pgmap v73: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:56.513 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:56 smithi050 ceph-mon[29717]: pgmap v73: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:56.623 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:56 smithi120 ceph-mon[31737]: pgmap v73: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:57.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:57 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:57.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:57 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:57.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:57 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:57.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:57 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:57.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:57 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:57.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:57 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:57.600 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:57 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:57.600 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:57 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:57.600 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:57 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:57.600 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:57 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:57.601 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:57 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:57.601 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:57 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:57.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:57 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:18:57.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:57 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:57.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:57 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:18:57.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:57 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:18:57.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:57 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:57.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:57 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:58.406 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:58 smithi120 ceph-mon[31737]: pgmap v74: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:58.406 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:58.406 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:58.406 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:18:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:58.429 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:58 smithi165 ceph-mon[31795]: pgmap v74: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:58.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:58.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:58.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:18:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:58.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:58 smithi050 ceph-mon[29717]: pgmap v74: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:18:58.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:58.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:18:58.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:18:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:00.243 INFO:teuthology.orchestra.run.smithi120.stdout:Created osd(s) 2 on host 'smithi120' 2024-09-11T03:19:00.599 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:00 smithi120 ceph-mon[31737]: pgmap v75: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:19:00.599 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:00.599 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:00.600 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-11T03:19:00.600 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:00.600 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:00.600 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:00.600 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:00.600 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:00.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:00 smithi050 ceph-mon[29717]: pgmap v75: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:19:00.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:00.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:00.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-11T03:19:00.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:00.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:00.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:00.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:00.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:00.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:00 smithi165 ceph-mon[31795]: pgmap v75: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:19:00.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:00.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:00.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-11T03:19:00.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:00.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:00.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:00.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:00.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:00.907 DEBUG:teuthology.orchestra.run.smithi120:osd.2> sudo journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.2.service 2024-09-11T03:19:00.910 INFO:tasks.cephadm:Deploying osd.3 on smithi120 with /dev/vg_nvme/lv_3... 2024-09-11T03:19:00.910 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-11T03:19:01.192 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.b/config 2024-09-11T03:19:01.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:01 smithi165 ceph-mon[31795]: Adjusting osd_memory_target on smithi120 to 16064M 2024-09-11T03:19:01.551 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:01 smithi120 ceph-mon[31737]: Adjusting osd_memory_target on smithi120 to 16064M 2024-09-11T03:19:01.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:01 smithi050 ceph-mon[29717]: Adjusting osd_memory_target on smithi120 to 16064M 2024-09-11T03:19:02.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:02 smithi120 ceph-mon[31737]: pgmap v76: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:19:02.375 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:02 smithi120 ceph-mon[31737]: from='osd.2 [v2:172.21.15.120:6800/2319624376,v1:172.21.15.120:6801/2319624376]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-11T03:19:02.375 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:02 smithi120 ceph-mon[31737]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-11T03:19:02.375 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:19:02 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2[37377]: 2024-09-11T03:19:02.135+0000 7f4afc0db640 -1 osd.2 0 log_to_monitors true 2024-09-11T03:19:02.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:02 smithi050 ceph-mon[29717]: pgmap v76: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:19:02.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:02 smithi050 ceph-mon[29717]: from='osd.2 [v2:172.21.15.120:6800/2319624376,v1:172.21.15.120:6801/2319624376]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-11T03:19:02.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:02 smithi050 ceph-mon[29717]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-11T03:19:02.679 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:02 smithi165 ceph-mon[31795]: pgmap v76: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:19:02.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:02 smithi165 ceph-mon[31795]: from='osd.2 [v2:172.21.15.120:6800/2319624376,v1:172.21.15.120:6801/2319624376]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-11T03:19:02.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:02 smithi165 ceph-mon[31795]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-11T03:19:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:03 smithi120 ceph-mon[31737]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-11T03:19:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:03 smithi120 ceph-mon[31737]: osdmap e16: 3 total, 2 up, 3 in 2024-09-11T03:19:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:03 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:03 smithi120 ceph-mon[31737]: from='osd.2 [v2:172.21.15.120:6800/2319624376,v1:172.21.15.120:6801/2319624376]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-11T03:19:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:03 smithi120 ceph-mon[31737]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-11T03:19:03.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:03 smithi050 ceph-mon[29717]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-11T03:19:03.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:03 smithi050 ceph-mon[29717]: osdmap e16: 3 total, 2 up, 3 in 2024-09-11T03:19:03.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:03 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:03.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:03 smithi050 ceph-mon[29717]: from='osd.2 [v2:172.21.15.120:6800/2319624376,v1:172.21.15.120:6801/2319624376]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-11T03:19:03.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:03 smithi050 ceph-mon[29717]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-11T03:19:03.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:03 smithi165 ceph-mon[31795]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-11T03:19:03.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:03 smithi165 ceph-mon[31795]: osdmap e16: 3 total, 2 up, 3 in 2024-09-11T03:19:03.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:03 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:03.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:03 smithi165 ceph-mon[31795]: from='osd.2 [v2:172.21.15.120:6800/2319624376,v1:172.21.15.120:6801/2319624376]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-11T03:19:03.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:03 smithi165 ceph-mon[31795]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-11T03:19:03.782 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-11T03:19:03.812 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi120:vg_nvme/lv_3 2024-09-11T03:19:04.073 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.b/config 2024-09-11T03:19:04.123 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:19:03 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2[37377]: 2024-09-11T03:19:03.755+0000 7f4af805e640 -1 osd.2 0 waiting for initial osdmap 2024-09-11T03:19:04.124 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:19:03 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2[37377]: 2024-09-11T03:19:03.757+0000 7f4aefe7d640 -1 osd.2 17 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-11T03:19:04.466 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:04 smithi120 ceph-mon[31737]: pgmap v78: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:19:04.466 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:04 smithi120 ceph-mon[31737]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-11T03:19:04.466 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:04 smithi120 ceph-mon[31737]: osdmap e17: 3 total, 2 up, 3 in 2024-09-11T03:19:04.466 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:04 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:04.466 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:04 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:04.466 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:04 smithi120 ceph-mon[31737]: from='osd.2 ' entity='osd.2' 2024-09-11T03:19:04.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:04 smithi050 ceph-mon[29717]: pgmap v78: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:19:04.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:04 smithi050 ceph-mon[29717]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-11T03:19:04.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:04 smithi050 ceph-mon[29717]: osdmap e17: 3 total, 2 up, 3 in 2024-09-11T03:19:04.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:04.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:04 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:04.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:04 smithi050 ceph-mon[29717]: from='osd.2 ' entity='osd.2' 2024-09-11T03:19:04.679 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:04 smithi165 ceph-mon[31795]: pgmap v78: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:19:04.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:04 smithi165 ceph-mon[31795]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-11T03:19:04.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:04 smithi165 ceph-mon[31795]: osdmap e17: 3 total, 2 up, 3 in 2024-09-11T03:19:04.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:04 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:04.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:04 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:04.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:04 smithi165 ceph-mon[31795]: from='osd.2 ' entity='osd.2' 2024-09-11T03:19:05.623 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:05 smithi120 ceph-mon[31737]: purged_snaps scrub starts 2024-09-11T03:19:05.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:05 smithi120 ceph-mon[31737]: purged_snaps scrub ok 2024-09-11T03:19:05.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:05 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:05.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:05 smithi120 ceph-mon[31737]: osd.2 [v2:172.21.15.120:6800/2319624376,v1:172.21.15.120:6801/2319624376] boot 2024-09-11T03:19:05.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:05 smithi120 ceph-mon[31737]: osdmap e18: 3 total, 3 up, 3 in 2024-09-11T03:19:05.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:05 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:05.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:05 smithi120 ceph-mon[31737]: from='client.24182 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi120:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:19:05.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:05 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:19:05.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:05 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:19:05.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:05 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:05 smithi050 ceph-mon[29717]: purged_snaps scrub starts 2024-09-11T03:19:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:05 smithi050 ceph-mon[29717]: purged_snaps scrub ok 2024-09-11T03:19:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:05 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:05 smithi050 ceph-mon[29717]: osd.2 [v2:172.21.15.120:6800/2319624376,v1:172.21.15.120:6801/2319624376] boot 2024-09-11T03:19:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:05 smithi050 ceph-mon[29717]: osdmap e18: 3 total, 3 up, 3 in 2024-09-11T03:19:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:05 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:05 smithi050 ceph-mon[29717]: from='client.24182 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi120:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:19:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:05 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:19:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:05 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:19:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:05 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:05.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:05 smithi165 ceph-mon[31795]: purged_snaps scrub starts 2024-09-11T03:19:05.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:05 smithi165 ceph-mon[31795]: purged_snaps scrub ok 2024-09-11T03:19:05.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:05 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:05.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:05 smithi165 ceph-mon[31795]: osd.2 [v2:172.21.15.120:6800/2319624376,v1:172.21.15.120:6801/2319624376] boot 2024-09-11T03:19:05.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:05 smithi165 ceph-mon[31795]: osdmap e18: 3 total, 3 up, 3 in 2024-09-11T03:19:05.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:05 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-11T03:19:05.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:05 smithi165 ceph-mon[31795]: from='client.24182 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi120:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:19:05.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:05 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:19:05.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:05 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:19:05.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:05 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:06.535 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:06 smithi120 ceph-mon[31737]: pgmap v81: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:19:06.536 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:06 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:06.536 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:06 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:06.536 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:06 smithi120 ceph-mon[31737]: Detected new or changed devices on smithi120 2024-09-11T03:19:06.536 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:06 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:06.536 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:06 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-11T03:19:06.536 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:06 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-11T03:19:06.536 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:06 smithi120 ceph-mon[31737]: osdmap e19: 3 total, 3 up, 3 in 2024-09-11T03:19:06.536 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:06 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-11T03:19:06.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:06 smithi050 ceph-mon[29717]: pgmap v81: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:19:06.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:06.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:06.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:06 smithi050 ceph-mon[29717]: Detected new or changed devices on smithi120 2024-09-11T03:19:06.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:06.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-11T03:19:06.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-11T03:19:06.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:06 smithi050 ceph-mon[29717]: osdmap e19: 3 total, 3 up, 3 in 2024-09-11T03:19:06.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-11T03:19:06.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:06 smithi165 ceph-mon[31795]: pgmap v81: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-11T03:19:06.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:06 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:06.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:06 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:06.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:06 smithi165 ceph-mon[31795]: Detected new or changed devices on smithi120 2024-09-11T03:19:06.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:06 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:06.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:06 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-11T03:19:06.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:06 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-11T03:19:06.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:06 smithi165 ceph-mon[31795]: osdmap e19: 3 total, 3 up, 3 in 2024-09-11T03:19:06.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:06 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-11T03:19:07.124 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:19:06 smithi120 sudo[39131]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-11T03:19:07.124 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:19:06 smithi120 sudo[39131]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T03:19:07.124 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:19:06 smithi120 sudo[39131]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T03:19:07.124 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:19:07 smithi120 sudo[39131]: pam_unix(sudo:session): session closed for user root 2024-09-11T03:19:07.125 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:19:07 smithi120 sudo[39134]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-11T03:19:07.125 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:19:07 smithi120 sudo[39134]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T03:19:07.125 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:19:07 smithi120 sudo[39134]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T03:19:07.125 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:19:07 smithi120 sudo[39134]: pam_unix(sudo:session): session closed for user root 2024-09-11T03:19:07.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 sudo[46481]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-11T03:19:07.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 sudo[46481]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T03:19:07.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 sudo[46481]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T03:19:07.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 sudo[46481]: pam_unix(sudo:session): session closed for user root 2024-09-11T03:19:07.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 sudo[46484]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-11T03:19:07.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 sudo[46484]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T03:19:07.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 sudo[46484]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T03:19:07.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 sudo[46484]: pam_unix(sudo:session): session closed for user root 2024-09-11T03:19:07.379 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46475]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-11T03:19:07.379 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46475]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T03:19:07.379 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46475]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T03:19:07.379 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46475]: pam_unix(sudo:session): session closed for user root 2024-09-11T03:19:07.379 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46478]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-11T03:19:07.379 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46478]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T03:19:07.379 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46478]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T03:19:07.379 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46478]: pam_unix(sudo:session): session closed for user root 2024-09-11T03:19:07.379 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46469]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-11T03:19:07.379 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46469]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T03:19:07.380 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46469]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T03:19:07.380 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46469]: pam_unix(sudo:session): session closed for user root 2024-09-11T03:19:07.380 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46472]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-11T03:19:07.380 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46472]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T03:19:07.380 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46472]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T03:19:07.380 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:19:06 smithi050 sudo[46472]: pam_unix(sudo:session): session closed for user root 2024-09-11T03:19:07.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 sudo[35164]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-11T03:19:07.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 sudo[35164]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T03:19:07.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 sudo[35164]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T03:19:07.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 sudo[35164]: pam_unix(sudo:session): session closed for user root 2024-09-11T03:19:07.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 sudo[35167]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-11T03:19:07.431 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 sudo[35167]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T03:19:07.431 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 sudo[35167]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T03:19:07.431 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 sudo[35167]: pam_unix(sudo:session): session closed for user root 2024-09-11T03:19:07.443 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 sudo[39149]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-11T03:19:07.443 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 sudo[39149]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T03:19:07.443 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 sudo[39149]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T03:19:07.443 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 sudo[39149]: pam_unix(sudo:session): session closed for user root 2024-09-11T03:19:07.443 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 sudo[39152]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-11T03:19:07.443 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 sudo[39152]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T03:19:07.443 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 sudo[39152]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T03:19:07.443 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 sudo[39152]: pam_unix(sudo:session): session closed for user root 2024-09-11T03:19:08.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-11T03:19:08.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: osdmap e20: 3 total, 3 up, 3 in 2024-09-11T03:19:08.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:08.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:08.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T03:19:08.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T03:19:08.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:19:08.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:19:08.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:19:08.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T03:19:08.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:19:08.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:19:08.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:19:08.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T03:19:08.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:08.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T03:19:08.126 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:19:08.126 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:19:08.126 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:19:08.126 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T03:19:08.126 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='client.? 172.21.15.120:0/3092098782' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "17067b00-bdc7-4856-b771-9ede8fdb1ee6"} : dispatch 2024-09-11T03:19:08.126 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "17067b00-bdc7-4856-b771-9ede8fdb1ee6"} : dispatch 2024-09-11T03:19:08.126 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "17067b00-bdc7-4856-b771-9ede8fdb1ee6"}]': finished 2024-09-11T03:19:08.126 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: osdmap e21: 4 total, 3 up, 4 in 2024-09-11T03:19:08.126 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:08.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-11T03:19:08.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: osdmap e20: 3 total, 3 up, 3 in 2024-09-11T03:19:08.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:08.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:08.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T03:19:08.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T03:19:08.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:19:08.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:19:08.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:19:08.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T03:19:08.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:19:08.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:19:08.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:19:08.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T03:19:08.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:08.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T03:19:08.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:19:08.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:19:08.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:19:08.130 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T03:19:08.130 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='client.? 172.21.15.120:0/3092098782' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "17067b00-bdc7-4856-b771-9ede8fdb1ee6"} : dispatch 2024-09-11T03:19:08.130 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "17067b00-bdc7-4856-b771-9ede8fdb1ee6"} : dispatch 2024-09-11T03:19:08.130 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "17067b00-bdc7-4856-b771-9ede8fdb1ee6"}]': finished 2024-09-11T03:19:08.130 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: osdmap e21: 4 total, 3 up, 4 in 2024-09-11T03:19:08.130 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:08.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-11T03:19:08.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: osdmap e20: 3 total, 3 up, 3 in 2024-09-11T03:19:08.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:08.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:08.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T03:19:08.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T03:19:08.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:19:08.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:19:08.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:19:08.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T03:19:08.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:19:08.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:19:08.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:19:08.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T03:19:08.182 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:08.182 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T03:19:08.182 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:19:08.182 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:19:08.182 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-11T03:19:08.182 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T03:19:08.182 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='client.? 172.21.15.120:0/3092098782' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "17067b00-bdc7-4856-b771-9ede8fdb1ee6"} : dispatch 2024-09-11T03:19:08.182 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "17067b00-bdc7-4856-b771-9ede8fdb1ee6"} : dispatch 2024-09-11T03:19:08.182 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "17067b00-bdc7-4856-b771-9ede8fdb1ee6"}]': finished 2024-09-11T03:19:08.182 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: osdmap e21: 4 total, 3 up, 4 in 2024-09-11T03:19:08.182 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:07 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:08 smithi120 ceph-mon[31737]: pgmap v84: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:08 smithi120 ceph-mon[31737]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-11T03:19:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:08 smithi120 ceph-mon[31737]: from='client.? 172.21.15.120:0/2498352623' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:19:09.127 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:08 smithi050 ceph-mon[29717]: pgmap v84: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:09.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:08 smithi050 ceph-mon[29717]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-11T03:19:09.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:08 smithi050 ceph-mon[29717]: from='client.? 172.21.15.120:0/2498352623' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:19:09.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:08 smithi165 ceph-mon[31795]: pgmap v84: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:09.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:08 smithi165 ceph-mon[31795]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-11T03:19:09.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:08 smithi165 ceph-mon[31795]: from='client.? 172.21.15.120:0/2498352623' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:19:11.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:10 smithi120 ceph-mon[31737]: pgmap v86: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:11.127 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:10 smithi050 ceph-mon[29717]: pgmap v86: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:11.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:10 smithi165 ceph-mon[31795]: pgmap v86: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:12.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:12 smithi120 ceph-mon[31737]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:13.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:12 smithi050 ceph-mon[29717]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:13.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:12 smithi165 ceph-mon[31795]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:14.586 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:14 smithi050 ceph-mon[29717]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:14.586 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:14.587 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:14.587 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:14.747 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:14 smithi120 ceph-mon[31737]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:14.747 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:14.747 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:14.747 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:14.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:14 smithi165 ceph-mon[31795]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:14.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:14.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:14.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:16.656 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:16 smithi165 ceph-mon[31795]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:16.656 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:16 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-11T03:19:16.656 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:16 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:16.657 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:16 smithi165 ceph-mon[31795]: Deploying daemon osd.3 on smithi120 2024-09-11T03:19:16.813 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:16 smithi120 ceph-mon[31737]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:16.813 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:16 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-11T03:19:16.813 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:16 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:16.813 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:16 smithi120 ceph-mon[31737]: Deploying daemon osd.3 on smithi120 2024-09-11T03:19:16.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:16 smithi050 ceph-mon[29717]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:16.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:16 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-11T03:19:16.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:16 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:16.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:16 smithi050 ceph-mon[29717]: Deploying daemon osd.3 on smithi120 2024-09-11T03:19:18.624 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:18 smithi165 ceph-mon[31795]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:18.624 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:18 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:18.624 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:18 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:18.624 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:18 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:18.784 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:18 smithi120 ceph-mon[31737]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:18.784 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:18 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:18.784 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:18 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:18.784 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:18 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:18.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:18 smithi050 ceph-mon[29717]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:18.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:18 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:18.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:18 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:18.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:18 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:20.732 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:20 smithi165 ceph-mon[31795]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:20.830 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:20 smithi120 ceph-mon[31737]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:20.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:20 smithi050 ceph-mon[29717]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:22.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:22 smithi120 ceph-mon[31737]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:22.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:22 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:22.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:22 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:22.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:22 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:22.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:22 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:22.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:22 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:22.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:22 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:22.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:22 smithi050 ceph-mon[29717]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:22.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:22 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:22.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:22 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:22.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:22 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:22.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:22 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:22.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:22 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:22.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:22 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:22.929 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:22 smithi165 ceph-mon[31795]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:22.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:22 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:22.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:22 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:22.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:22 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:22.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:22 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:22.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:22 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:22.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:22 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:24.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:24 smithi120 ceph-mon[31737]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:24.877 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:24 smithi050 ceph-mon[29717]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:24.929 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:24 smithi165 ceph-mon[31795]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:25.185 INFO:teuthology.orchestra.run.smithi120.stdout:Created osd(s) 3 on host 'smithi120' 2024-09-11T03:19:25.761 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:25.761 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:25.761 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-11T03:19:25.761 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-11T03:19:25.761 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:25.761 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:25.761 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:25.761 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:25.761 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:25.787 DEBUG:teuthology.orchestra.run.smithi120:osd.3> sudo journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.3.service 2024-09-11T03:19:25.789 INFO:tasks.cephadm:Deploying osd.4 on smithi165 with /dev/vg_nvme/lv_4... 2024-09-11T03:19:25.789 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-11T03:19:25.816 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:25 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:25.817 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:25 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:25.817 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:25 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-11T03:19:25.817 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:25 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-11T03:19:25.817 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:25 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:25.817 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:25 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:25.817 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:25 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:25.817 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:25 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:25.817 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:25 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:25.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:25.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:25.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-11T03:19:25.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-11T03:19:25.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:25.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:25.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:25.881 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:25.881 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:26.040 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T03:19:26.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:26 smithi165 ceph-mon[31795]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:26.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:26 smithi165 ceph-mon[31795]: Adjusting osd_memory_target on smithi120 to 8032M 2024-09-11T03:19:26.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:26 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:26.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:26 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:26.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:26 smithi165 ceph-mon[31795]: Detected new or changed devices on smithi120 2024-09-11T03:19:26.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:26 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:26.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:26 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:26.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:26 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:26.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:26 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:26.681 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:26 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:26.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:26 smithi120 ceph-mon[31737]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:26.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:26 smithi120 ceph-mon[31737]: Adjusting osd_memory_target on smithi120 to 8032M 2024-09-11T03:19:26.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:26.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:26.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:26 smithi120 ceph-mon[31737]: Detected new or changed devices on smithi120 2024-09-11T03:19:26.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:26.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:26.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:26.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:26.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:26 smithi050 ceph-mon[29717]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:26 smithi050 ceph-mon[29717]: Adjusting osd_memory_target on smithi120 to 8032M 2024-09-11T03:19:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:26 smithi050 ceph-mon[29717]: Detected new or changed devices on smithi120 2024-09-11T03:19:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:27.373 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:19:26 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3[41126]: 2024-09-11T03:19:26.947+0000 7f88367b4640 -1 osd.3 0 log_to_monitors true 2024-09-11T03:19:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:27 smithi120 ceph-mon[31737]: from='osd.3 [v2:172.21.15.120:6808/4284416980,v1:172.21.15.120:6809/4284416980]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-11T03:19:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:27 smithi120 ceph-mon[31737]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-11T03:19:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:27.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:27 smithi050 ceph-mon[29717]: from='osd.3 [v2:172.21.15.120:6808/4284416980,v1:172.21.15.120:6809/4284416980]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-11T03:19:27.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:27 smithi050 ceph-mon[29717]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-11T03:19:27.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:27.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:27.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:27.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:27.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:27.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:27.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:27.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:27 smithi165 ceph-mon[31795]: from='osd.3 [v2:172.21.15.120:6808/4284416980,v1:172.21.15.120:6809/4284416980]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-11T03:19:27.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:27 smithi165 ceph-mon[31795]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-11T03:19:27.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:27 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:27.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:27 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:27.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:27 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:27.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:27 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:27.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:27 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:27.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:27 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:27.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:27 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:28.329 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:19:28.354 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi165:vg_nvme/lv_4 2024-09-11T03:19:28.636 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T03:19:28.846 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:28 smithi165 ceph-mon[31795]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:28.846 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:28 smithi165 ceph-mon[31795]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-11T03:19:28.846 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:28 smithi165 ceph-mon[31795]: osdmap e22: 4 total, 3 up, 4 in 2024-09-11T03:19:28.846 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:28 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:28.846 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:28 smithi165 ceph-mon[31795]: from='osd.3 [v2:172.21.15.120:6808/4284416980,v1:172.21.15.120:6809/4284416980]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-11T03:19:28.846 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:28 smithi165 ceph-mon[31795]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-11T03:19:28.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:28 smithi120 ceph-mon[31737]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:28.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:28 smithi120 ceph-mon[31737]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-11T03:19:28.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:28 smithi120 ceph-mon[31737]: osdmap e22: 4 total, 3 up, 4 in 2024-09-11T03:19:28.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:28 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:28.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:28 smithi120 ceph-mon[31737]: from='osd.3 [v2:172.21.15.120:6808/4284416980,v1:172.21.15.120:6809/4284416980]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-11T03:19:28.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:28 smithi120 ceph-mon[31737]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-11T03:19:28.874 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:19:28 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3[41126]: 2024-09-11T03:19:28.594+0000 7f8832737640 -1 osd.3 0 waiting for initial osdmap 2024-09-11T03:19:28.875 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:19:28 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3[41126]: 2024-09-11T03:19:28.598+0000 7f882e55e640 -1 osd.3 23 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-11T03:19:28.877 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:28 smithi050 ceph-mon[29717]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:28.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:28 smithi050 ceph-mon[29717]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-11T03:19:28.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:28 smithi050 ceph-mon[29717]: osdmap e22: 4 total, 3 up, 4 in 2024-09-11T03:19:28.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:28 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:28.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:28 smithi050 ceph-mon[29717]: from='osd.3 [v2:172.21.15.120:6808/4284416980,v1:172.21.15.120:6809/4284416980]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-11T03:19:28.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:28 smithi050 ceph-mon[29717]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-11T03:19:29.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:29 smithi120 ceph-mon[31737]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-11T03:19:29.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:29 smithi120 ceph-mon[31737]: osdmap e23: 4 total, 3 up, 4 in 2024-09-11T03:19:29.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:29 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:29.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:29 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:29.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:29 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:19:29.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:29 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:19:29.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:29 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:29.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:29 smithi120 ceph-mon[31737]: osd.3 [v2:172.21.15.120:6808/4284416980,v1:172.21.15.120:6809/4284416980] boot 2024-09-11T03:19:29.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:29 smithi120 ceph-mon[31737]: osdmap e24: 4 total, 4 up, 4 in 2024-09-11T03:19:29.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:29 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:29.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:29 smithi050 ceph-mon[29717]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-11T03:19:29.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:29 smithi050 ceph-mon[29717]: osdmap e23: 4 total, 3 up, 4 in 2024-09-11T03:19:29.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:29 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:29.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:29 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:29.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:29 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:19:29.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:29 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:19:29.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:29 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:29.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:29 smithi050 ceph-mon[29717]: osd.3 [v2:172.21.15.120:6808/4284416980,v1:172.21.15.120:6809/4284416980] boot 2024-09-11T03:19:29.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:29 smithi050 ceph-mon[29717]: osdmap e24: 4 total, 4 up, 4 in 2024-09-11T03:19:29.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:29 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:29.923 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:29 smithi165 ceph-mon[31795]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-11T03:19:29.923 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:29 smithi165 ceph-mon[31795]: osdmap e23: 4 total, 3 up, 4 in 2024-09-11T03:19:29.923 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:29 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:29.923 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:29 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:29.923 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:29 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:19:29.924 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:29 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:19:29.924 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:29 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:29.924 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:29 smithi165 ceph-mon[31795]: osd.3 [v2:172.21.15.120:6808/4284416980,v1:172.21.15.120:6809/4284416980] boot 2024-09-11T03:19:29.924 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:29 smithi165 ceph-mon[31795]: osdmap e24: 4 total, 4 up, 4 in 2024-09-11T03:19:29.924 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:29 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-11T03:19:30.679 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:30 smithi165 ceph-mon[31795]: purged_snaps scrub starts 2024-09-11T03:19:30.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:30 smithi165 ceph-mon[31795]: purged_snaps scrub ok 2024-09-11T03:19:30.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:30 smithi165 ceph-mon[31795]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:30.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:30 smithi165 ceph-mon[31795]: from='client.24181 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi165:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:19:30.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:30 smithi165 ceph-mon[31795]: osdmap e25: 4 total, 4 up, 4 in 2024-09-11T03:19:30.727 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:30 smithi120 ceph-mon[31737]: purged_snaps scrub starts 2024-09-11T03:19:30.727 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:30 smithi120 ceph-mon[31737]: purged_snaps scrub ok 2024-09-11T03:19:30.727 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:30 smithi120 ceph-mon[31737]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:30.727 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:30 smithi120 ceph-mon[31737]: from='client.24181 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi165:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:19:30.727 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:30 smithi120 ceph-mon[31737]: osdmap e25: 4 total, 4 up, 4 in 2024-09-11T03:19:30.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:30 smithi050 ceph-mon[29717]: purged_snaps scrub starts 2024-09-11T03:19:30.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:30 smithi050 ceph-mon[29717]: purged_snaps scrub ok 2024-09-11T03:19:30.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:30 smithi050 ceph-mon[29717]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-11T03:19:30.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:30 smithi050 ceph-mon[29717]: from='client.24181 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi165:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:19:30.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:30 smithi050 ceph-mon[29717]: osdmap e25: 4 total, 4 up, 4 in 2024-09-11T03:19:31.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:31 smithi120 ceph-mon[31737]: from='client.? 172.21.15.165:0/1357346974' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ff27fd42-5dc7-4e47-b8f1-e32de70f5053"} : dispatch 2024-09-11T03:19:31.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:31 smithi120 ceph-mon[31737]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ff27fd42-5dc7-4e47-b8f1-e32de70f5053"} : dispatch 2024-09-11T03:19:31.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:31 smithi120 ceph-mon[31737]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ff27fd42-5dc7-4e47-b8f1-e32de70f5053"}]': finished 2024-09-11T03:19:31.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:31 smithi120 ceph-mon[31737]: osdmap e26: 5 total, 4 up, 5 in 2024-09-11T03:19:31.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:31 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:31.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:31 smithi050 ceph-mon[29717]: from='client.? 172.21.15.165:0/1357346974' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ff27fd42-5dc7-4e47-b8f1-e32de70f5053"} : dispatch 2024-09-11T03:19:31.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:31 smithi050 ceph-mon[29717]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ff27fd42-5dc7-4e47-b8f1-e32de70f5053"} : dispatch 2024-09-11T03:19:31.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:31 smithi050 ceph-mon[29717]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ff27fd42-5dc7-4e47-b8f1-e32de70f5053"}]': finished 2024-09-11T03:19:31.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:31 smithi050 ceph-mon[29717]: osdmap e26: 5 total, 4 up, 5 in 2024-09-11T03:19:31.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:31 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:31.929 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:31 smithi165 ceph-mon[31795]: from='client.? 172.21.15.165:0/1357346974' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ff27fd42-5dc7-4e47-b8f1-e32de70f5053"} : dispatch 2024-09-11T03:19:31.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:31 smithi165 ceph-mon[31795]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ff27fd42-5dc7-4e47-b8f1-e32de70f5053"} : dispatch 2024-09-11T03:19:31.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:31 smithi165 ceph-mon[31795]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ff27fd42-5dc7-4e47-b8f1-e32de70f5053"}]': finished 2024-09-11T03:19:31.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:31 smithi165 ceph-mon[31795]: osdmap e26: 5 total, 4 up, 5 in 2024-09-11T03:19:31.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:31 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:32.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:32 smithi120 ceph-mon[31737]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:32.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:32 smithi120 ceph-mon[31737]: from='client.? 172.21.15.165:0/3311910891' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:19:32.877 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:32 smithi050 ceph-mon[29717]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:32.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:32 smithi050 ceph-mon[29717]: from='client.? 172.21.15.165:0/3311910891' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:19:32.929 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:32 smithi165 ceph-mon[31795]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:32.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:32 smithi165 ceph-mon[31795]: from='client.? 172.21.15.165:0/3311910891' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:19:34.796 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:34 smithi050 ceph-mon[29717]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:34.797 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:34.797 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:34.797 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:34.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:34 smithi120 ceph-mon[31737]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:34.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:34 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:34.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:34 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:34.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:34 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:34.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:34 smithi165 ceph-mon[31795]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:34.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:34.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:34.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:36.855 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:36 smithi165 ceph-mon[31795]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-11T03:19:36.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:36 smithi120 ceph-mon[31737]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-11T03:19:36.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:36 smithi050 ceph-mon[29717]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-11T03:19:38.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:38 smithi120 ceph-mon[31737]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-11T03:19:38.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:38 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:38.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:38 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:38.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:38 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:38.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:38 smithi050 ceph-mon[29717]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-11T03:19:38.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:38 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:38.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:38 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:38.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:38 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:38.897 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:38 smithi165 ceph-mon[31795]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-11T03:19:38.897 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:38 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:38.897 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:38 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:38.897 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:38 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:40.847 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:40 smithi165 ceph-mon[31795]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-11T03:19:40.848 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-11T03:19:40.848 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:40.848 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:40 smithi165 ceph-mon[31795]: Deploying daemon osd.4 on smithi165 2024-09-11T03:19:40.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:40 smithi120 ceph-mon[31737]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-11T03:19:40.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-11T03:19:40.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:40.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:40 smithi120 ceph-mon[31737]: Deploying daemon osd.4 on smithi165 2024-09-11T03:19:40.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:40 smithi050 ceph-mon[29717]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-11T03:19:40.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-11T03:19:40.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:40.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:40 smithi050 ceph-mon[29717]: Deploying daemon osd.4 on smithi165 2024-09-11T03:19:42.779 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:42 smithi165 ceph-mon[31795]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-11T03:19:42.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:42 smithi120 ceph-mon[31737]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-11T03:19:42.877 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:42 smithi050 ceph-mon[29717]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-11T03:19:44.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:44 smithi165 ceph-mon[31795]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-11T03:19:44.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:44 smithi120 ceph-mon[31737]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-11T03:19:44.877 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:44 smithi050 ceph-mon[29717]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-11T03:19:46.867 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:46 smithi165 ceph-mon[31795]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:19:46.867 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:46 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:46.867 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:46 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:46.867 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:46 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:46.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:46 smithi120 ceph-mon[31737]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:19:46.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:46 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:46.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:46 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:46.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:46 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:46.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:46 smithi050 ceph-mon[29717]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:19:46.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:46 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:46.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:46 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:46.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:46 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:47.871 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:47 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:47.871 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:47 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:47.871 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:47 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:47.872 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:47 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:47.872 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:47 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:47.872 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:47 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:47.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:47 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:47.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:47 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:47.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:47 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:47.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:47 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:47.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:47 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:47.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:47 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:47.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:47 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:47.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:47 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:47.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:47 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:47.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:47 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:47.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:47 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:47.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:47 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:48.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:48 smithi120 ceph-mon[31737]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:48.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:48 smithi050 ceph-mon[29717]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:48.893 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:48 smithi165 ceph-mon[31795]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:50.568 INFO:teuthology.orchestra.run.smithi165.stdout:Created osd(s) 4 on host 'smithi165' 2024-09-11T03:19:50.866 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:50 smithi165 ceph-mon[31795]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:50.866 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:50 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:50.866 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:50 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:50.866 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:50 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-11T03:19:50.867 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:50 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:50.867 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:50 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:50.867 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:50 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:50.867 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:50 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:50.867 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:50 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:50.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:50 smithi120 ceph-mon[31737]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:50.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:50 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:50.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:50 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:50.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:50 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-11T03:19:50.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:50 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:50.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:50 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:50.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:50 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:50.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:50 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:50.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:50 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:50.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:50 smithi050 ceph-mon[29717]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:50.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:50 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:50.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:50 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:50.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:50 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-11T03:19:50.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:50 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:50.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:50 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:50.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:50 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:50.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:50 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:50.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:50 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:51.144 DEBUG:teuthology.orchestra.run.smithi165:osd.4> sudo journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.4.service 2024-09-11T03:19:51.147 INFO:tasks.cephadm:Deploying osd.5 on smithi165 with /dev/vg_nvme/lv_3... 2024-09-11T03:19:51.147 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-11T03:19:51.435 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T03:19:51.680 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:51 smithi165 ceph-mon[31795]: Adjusting osd_memory_target on smithi165 to 20160M 2024-09-11T03:19:51.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:51 smithi120 ceph-mon[31737]: Adjusting osd_memory_target on smithi165 to 20160M 2024-09-11T03:19:51.877 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:51 smithi050 ceph-mon[29717]: Adjusting osd_memory_target on smithi165 to 20160M 2024-09-11T03:19:52.491 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:19:52 smithi165 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4[38172]: 2024-09-11T03:19:52.242+0000 7fda0bb7e640 -1 osd.4 0 log_to_monitors true 2024-09-11T03:19:52.757 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:52 smithi165 ceph-mon[31795]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:52.757 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:52 smithi165 ceph-mon[31795]: from='osd.4 [v2:172.21.15.165:6800/2302056764,v1:172.21.15.165:6801/2302056764]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-11T03:19:52.757 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:52 smithi165 ceph-mon[31795]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-11T03:19:52.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:52 smithi120 ceph-mon[31737]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:52.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:52 smithi120 ceph-mon[31737]: from='osd.4 [v2:172.21.15.165:6800/2302056764,v1:172.21.15.165:6801/2302056764]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-11T03:19:52.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:52 smithi120 ceph-mon[31737]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-11T03:19:52.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:52 smithi050 ceph-mon[29717]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:52.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:52 smithi050 ceph-mon[29717]: from='osd.4 [v2:172.21.15.165:6800/2302056764,v1:172.21.15.165:6801/2302056764]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-11T03:19:52.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:52 smithi050 ceph-mon[29717]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-11T03:19:53.800 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:53 smithi165 ceph-mon[31795]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-11T03:19:53.801 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:53 smithi165 ceph-mon[31795]: from='osd.4 [v2:172.21.15.165:6800/2302056764,v1:172.21.15.165:6801/2302056764]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]} : dispatch 2024-09-11T03:19:53.801 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:53 smithi165 ceph-mon[31795]: osdmap e27: 5 total, 4 up, 5 in 2024-09-11T03:19:53.801 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:53 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:53.801 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:53 smithi165 ceph-mon[31795]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]} : dispatch 2024-09-11T03:19:53.801 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:53 smithi165 ceph-mon[31795]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-09-11T03:19:53.801 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:53 smithi165 ceph-mon[31795]: osdmap e28: 5 total, 4 up, 5 in 2024-09-11T03:19:53.801 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:53 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:53.801 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-09-11T03:19:53.828 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi165:vg_nvme/lv_3 2024-09-11T03:19:53.976 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:53 smithi050 ceph-mon[29717]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-11T03:19:53.976 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:53 smithi050 ceph-mon[29717]: from='osd.4 [v2:172.21.15.165:6800/2302056764,v1:172.21.15.165:6801/2302056764]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]} : dispatch 2024-09-11T03:19:53.976 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:53 smithi050 ceph-mon[29717]: osdmap e27: 5 total, 4 up, 5 in 2024-09-11T03:19:53.976 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:53 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:53.976 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:53 smithi050 ceph-mon[29717]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]} : dispatch 2024-09-11T03:19:53.976 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:53 smithi050 ceph-mon[29717]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-09-11T03:19:53.977 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:53 smithi050 ceph-mon[29717]: osdmap e28: 5 total, 4 up, 5 in 2024-09-11T03:19:53.977 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:53 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:54.084 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T03:19:54.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:53 smithi120 ceph-mon[31737]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-11T03:19:54.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:53 smithi120 ceph-mon[31737]: from='osd.4 [v2:172.21.15.165:6800/2302056764,v1:172.21.15.165:6801/2302056764]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]} : dispatch 2024-09-11T03:19:54.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:53 smithi120 ceph-mon[31737]: osdmap e27: 5 total, 4 up, 5 in 2024-09-11T03:19:54.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:53 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:54.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:53 smithi120 ceph-mon[31737]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]} : dispatch 2024-09-11T03:19:54.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:53 smithi120 ceph-mon[31737]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-09-11T03:19:54.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:53 smithi120 ceph-mon[31737]: osdmap e28: 5 total, 4 up, 5 in 2024-09-11T03:19:54.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:53 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:54.323 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:19:54 smithi165 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4[38172]: 2024-09-11T03:19:54.058+0000 7fda08315640 -1 osd.4 0 waiting for initial osdmap 2024-09-11T03:19:54.323 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:19:54 smithi165 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4[38172]: 2024-09-11T03:19:54.062+0000 7fd9ff920640 -1 osd.4 28 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-11T03:19:54.636 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:54 smithi165 ceph-mon[31795]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:54.637 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:54 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:54.929 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:54 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:54.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:54 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:54.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:54 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:54.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:54 smithi165 ceph-mon[31795]: from='osd.4 ' entity='osd.4' 2024-09-11T03:19:54.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:54 smithi165 ceph-mon[31795]: osd.4 [v2:172.21.15.165:6800/2302056764,v1:172.21.15.165:6801/2302056764] boot 2024-09-11T03:19:54.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:54 smithi165 ceph-mon[31795]: osdmap e29: 5 total, 5 up, 5 in 2024-09-11T03:19:54.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:54 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:54.997 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:54 smithi050 ceph-mon[29717]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:54.997 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:54.997 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:54.997 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:54.997 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:54.998 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:54 smithi050 ceph-mon[29717]: from='osd.4 ' entity='osd.4' 2024-09-11T03:19:54.998 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:54 smithi050 ceph-mon[29717]: osd.4 [v2:172.21.15.165:6800/2302056764,v1:172.21.15.165:6801/2302056764] boot 2024-09-11T03:19:54.998 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:54 smithi050 ceph-mon[29717]: osdmap e29: 5 total, 5 up, 5 in 2024-09-11T03:19:54.998 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:55.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:54 smithi120 ceph-mon[31737]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:19:55.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:55.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:55.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:55.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:55.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:54 smithi120 ceph-mon[31737]: from='osd.4 ' entity='osd.4' 2024-09-11T03:19:55.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:54 smithi120 ceph-mon[31737]: osd.4 [v2:172.21.15.165:6800/2302056764,v1:172.21.15.165:6801/2302056764] boot 2024-09-11T03:19:55.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:54 smithi120 ceph-mon[31737]: osdmap e29: 5 total, 5 up, 5 in 2024-09-11T03:19:55.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-11T03:19:55.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:55 smithi165 ceph-mon[31795]: purged_snaps scrub starts 2024-09-11T03:19:55.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:55 smithi165 ceph-mon[31795]: purged_snaps scrub ok 2024-09-11T03:19:55.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:55 smithi165 ceph-mon[31795]: from='client.24208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi165:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:19:55.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:55 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:19:55.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:55 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:19:55.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:55 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:55.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:55 smithi165 ceph-mon[31795]: osdmap e30: 5 total, 5 up, 5 in 2024-09-11T03:19:56.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:55 smithi120 ceph-mon[31737]: purged_snaps scrub starts 2024-09-11T03:19:56.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:55 smithi120 ceph-mon[31737]: purged_snaps scrub ok 2024-09-11T03:19:56.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:55 smithi120 ceph-mon[31737]: from='client.24208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi165:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:19:56.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:19:56.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:19:56.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:56.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:55 smithi120 ceph-mon[31737]: osdmap e30: 5 total, 5 up, 5 in 2024-09-11T03:19:56.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:55 smithi050 ceph-mon[29717]: purged_snaps scrub starts 2024-09-11T03:19:56.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:55 smithi050 ceph-mon[29717]: purged_snaps scrub ok 2024-09-11T03:19:56.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:55 smithi050 ceph-mon[29717]: from='client.24208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi165:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:19:56.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-11T03:19:56.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-11T03:19:56.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:56.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:55 smithi050 ceph-mon[29717]: osdmap e30: 5 total, 5 up, 5 in 2024-09-11T03:19:56.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:56 smithi050 ceph-mon[29717]: pgmap v117: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:19:56.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:56 smithi050 ceph-mon[29717]: osdmap e31: 5 total, 5 up, 5 in 2024-09-11T03:19:56.929 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:56 smithi165 ceph-mon[31795]: pgmap v117: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:19:56.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:56 smithi165 ceph-mon[31795]: osdmap e31: 5 total, 5 up, 5 in 2024-09-11T03:19:57.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:56 smithi120 ceph-mon[31737]: pgmap v117: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:19:57.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:56 smithi120 ceph-mon[31737]: osdmap e31: 5 total, 5 up, 5 in 2024-09-11T03:19:57.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:57 smithi165 ceph-mon[31795]: from='client.? 172.21.15.165:0/2669799653' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1d774bfe-ae91-4451-a07a-82c7cab8a1e8"} : dispatch 2024-09-11T03:19:57.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:57 smithi165 ceph-mon[31795]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1d774bfe-ae91-4451-a07a-82c7cab8a1e8"} : dispatch 2024-09-11T03:19:57.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:57 smithi165 ceph-mon[31795]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1d774bfe-ae91-4451-a07a-82c7cab8a1e8"}]': finished 2024-09-11T03:19:57.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:57 smithi165 ceph-mon[31795]: osdmap e32: 6 total, 5 up, 6 in 2024-09-11T03:19:57.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:57 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:19:57.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:57 smithi165 ceph-mon[31795]: from='client.? 172.21.15.165:0/2938680013' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:19:58.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:57 smithi120 ceph-mon[31737]: from='client.? 172.21.15.165:0/2669799653' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1d774bfe-ae91-4451-a07a-82c7cab8a1e8"} : dispatch 2024-09-11T03:19:58.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:57 smithi120 ceph-mon[31737]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1d774bfe-ae91-4451-a07a-82c7cab8a1e8"} : dispatch 2024-09-11T03:19:58.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:57 smithi120 ceph-mon[31737]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1d774bfe-ae91-4451-a07a-82c7cab8a1e8"}]': finished 2024-09-11T03:19:58.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:57 smithi120 ceph-mon[31737]: osdmap e32: 6 total, 5 up, 6 in 2024-09-11T03:19:58.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:57 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:19:58.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:57 smithi120 ceph-mon[31737]: from='client.? 172.21.15.165:0/2938680013' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:19:58.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:57 smithi050 ceph-mon[29717]: from='client.? 172.21.15.165:0/2669799653' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1d774bfe-ae91-4451-a07a-82c7cab8a1e8"} : dispatch 2024-09-11T03:19:58.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:57 smithi050 ceph-mon[29717]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1d774bfe-ae91-4451-a07a-82c7cab8a1e8"} : dispatch 2024-09-11T03:19:58.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:57 smithi050 ceph-mon[29717]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1d774bfe-ae91-4451-a07a-82c7cab8a1e8"}]': finished 2024-09-11T03:19:58.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:57 smithi050 ceph-mon[29717]: osdmap e32: 6 total, 5 up, 6 in 2024-09-11T03:19:58.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:57 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:19:58.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:57 smithi050 ceph-mon[29717]: from='client.? 172.21.15.165:0/2938680013' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-11T03:19:58.793 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:58 smithi165 ceph-mon[31795]: pgmap v121: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:19:58.793 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:58.793 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:58.793 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:58.793 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:58.793 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:58.793 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:58.794 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:58 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:59.025 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:58 smithi120 ceph-mon[31737]: pgmap v121: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:19:59.025 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:59.025 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:59.025 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:59.025 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:59.025 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:59.026 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:59.026 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:59.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:58 smithi050 ceph-mon[29717]: pgmap v121: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:19:59.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:59.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:59.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:19:59.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:59.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:19:59.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:19:59.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:19:59.912 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:19:59 smithi165 ceph-mon[31795]: Detected new or changed devices on smithi165 2024-09-11T03:20:00.038 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:19:59 smithi120 ceph-mon[31737]: Detected new or changed devices on smithi165 2024-09-11T03:20:00.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:19:59 smithi050 ceph-mon[29717]: Detected new or changed devices on smithi165 2024-09-11T03:20:00.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:00 smithi165 ceph-mon[31795]: pgmap v122: 1 pgs: 1 peering; 577 KiB data, 134 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:20:00.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:00 smithi165 ceph-mon[31795]: overall HEALTH_OK 2024-09-11T03:20:00.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:00.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:00.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:00.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:00.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:00.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:00.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:00 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:01.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:00 smithi120 ceph-mon[31737]: pgmap v122: 1 pgs: 1 peering; 577 KiB data, 134 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:20:01.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:00 smithi120 ceph-mon[31737]: overall HEALTH_OK 2024-09-11T03:20:01.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:01.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:01.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:01.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:01.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:01.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:01.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:01.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:00 smithi050 ceph-mon[29717]: pgmap v122: 1 pgs: 1 peering; 577 KiB data, 134 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:20:01.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:00 smithi050 ceph-mon[29717]: overall HEALTH_OK 2024-09-11T03:20:01.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:01.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:01.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:01.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:01.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:01.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:01.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:02.846 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:02 smithi165 ceph-mon[31795]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-11T03:20:02.930 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:02 smithi050 ceph-mon[29717]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-11T03:20:03.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:02 smithi120 ceph-mon[31737]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-11T03:20:04.856 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:04 smithi165 ceph-mon[31795]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-11T03:20:05.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:04 smithi120 ceph-mon[31737]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-11T03:20:05.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:04 smithi050 ceph-mon[29717]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-11T03:20:05.900 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:05 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-11T03:20:05.901 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:05 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:06.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:05 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-11T03:20:06.140 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:05 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:06.141 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:05 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-11T03:20:06.141 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:05 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:06.812 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:06 smithi165 ceph-mon[31795]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-11T03:20:06.812 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:06 smithi165 ceph-mon[31795]: Deploying daemon osd.5 on smithi165 2024-09-11T03:20:06.812 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:06 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:06.812 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:06 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:06.812 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:06 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:06.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:06 smithi120 ceph-mon[31737]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-11T03:20:06.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:06 smithi120 ceph-mon[31737]: Deploying daemon osd.5 on smithi165 2024-09-11T03:20:06.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:06 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:06.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:06 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:06.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:06 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:07.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:06 smithi050 ceph-mon[29717]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-11T03:20:07.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:06 smithi050 ceph-mon[29717]: Deploying daemon osd.5 on smithi165 2024-09-11T03:20:07.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:07.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:07.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:08.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:08 smithi120 ceph-mon[31737]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 57 KiB/s, 0 objects/s recovering 2024-09-11T03:20:08.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:08 smithi165 ceph-mon[31795]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 57 KiB/s, 0 objects/s recovering 2024-09-11T03:20:09.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:08 smithi050 ceph-mon[29717]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 57 KiB/s, 0 objects/s recovering 2024-09-11T03:20:10.896 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:10 smithi165 ceph-mon[31795]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:20:11.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:10 smithi120 ceph-mon[31737]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:20:11.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:10 smithi050 ceph-mon[29717]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:20:11.898 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:11 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:11.898 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:11 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:11.898 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:11 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:11.898 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:11 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:11.898 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:11 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:11.898 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:11 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:12.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:11 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:12.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:11 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:12.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:11 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:12.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:11 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:12.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:11 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:12.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:11 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:12.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:12.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:12.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:12.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:12.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:12.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:11 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:12.822 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:12 smithi165 ceph-mon[31795]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:20:13.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:12 smithi120 ceph-mon[31737]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:20:13.127 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:12 smithi050 ceph-mon[29717]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:20:14.316 INFO:teuthology.orchestra.run.smithi165.stdout:Created osd(s) 5 on host 'smithi165' 2024-09-11T03:20:14.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:14 smithi050 ceph-mon[29717]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:20:14.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:14.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-11T03:20:14.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-11T03:20:14.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:14.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:14.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:14 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.926 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:14 smithi165 ceph-mon[31795]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:20:14.926 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.926 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.926 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.926 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:14.927 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.927 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-11T03:20:14.927 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-11T03:20:14.927 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.927 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.927 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:14.927 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:14.927 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:14 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:14.954 DEBUG:teuthology.orchestra.run.smithi165:osd.5> sudo journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.5.service 2024-09-11T03:20:14.957 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-11T03:20:14.957 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T03:20:15.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:14 smithi120 ceph-mon[31737]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:20:15.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:15.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:15.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:15.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:15.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:15.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-11T03:20:15.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-11T03:20:15.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:15.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:15.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:15.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:15.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:14 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:15.662 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:16.014 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:15 smithi050 ceph-mon[29717]: Adjusting osd_memory_target on smithi165 to 10080M 2024-09-11T03:20:16.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:15 smithi120 ceph-mon[31737]: Adjusting osd_memory_target on smithi165 to 10080M 2024-09-11T03:20:16.160 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:15 smithi165 ceph-mon[31795]: Adjusting osd_memory_target on smithi165 to 10080M 2024-09-11T03:20:16.430 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:20:16 smithi165 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5[41979]: 2024-09-11T03:20:16.160+0000 7f765b47f640 -1 osd.5 0 log_to_monitors true 2024-09-11T03:20:16.500 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:20:17.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:16 smithi120 ceph-mon[31737]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:20:17.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:16 smithi120 ceph-mon[31737]: from='osd.5 [v2:172.21.15.165:6808/82324314,v1:172.21.15.165:6809/82324314]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-11T03:20:17.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:16 smithi120 ceph-mon[31737]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-11T03:20:17.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:16 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/1406698273' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-11T03:20:17.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:16 smithi050 ceph-mon[29717]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:20:17.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:16 smithi050 ceph-mon[29717]: from='osd.5 [v2:172.21.15.165:6808/82324314,v1:172.21.15.165:6809/82324314]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-11T03:20:17.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:16 smithi050 ceph-mon[29717]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-11T03:20:17.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:16 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1406698273' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-11T03:20:17.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:16 smithi165 ceph-mon[31795]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:20:17.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:16 smithi165 ceph-mon[31795]: from='osd.5 [v2:172.21.15.165:6808/82324314,v1:172.21.15.165:6809/82324314]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-11T03:20:17.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:16 smithi165 ceph-mon[31795]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-11T03:20:17.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:16 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/1406698273' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-11T03:20:17.210 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":32,"num_osds":6,"num_up_osds":5,"osd_up_since":1726024794,"num_in_osds":6,"osd_in_since":1726024797,"num_remapped_pgs":0} 2024-09-11T03:20:18.001 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:17 smithi050 ceph-mon[29717]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-11T03:20:18.001 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:17 smithi050 ceph-mon[29717]: osdmap e33: 6 total, 5 up, 6 in 2024-09-11T03:20:18.001 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:17 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:20:18.001 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:17 smithi050 ceph-mon[29717]: from='osd.5 [v2:172.21.15.165:6808/82324314,v1:172.21.15.165:6809/82324314]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]} : dispatch 2024-09-11T03:20:18.001 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:17 smithi050 ceph-mon[29717]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]} : dispatch 2024-09-11T03:20:18.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:17 smithi120 ceph-mon[31737]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-11T03:20:18.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:17 smithi120 ceph-mon[31737]: osdmap e33: 6 total, 5 up, 6 in 2024-09-11T03:20:18.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:17 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:20:18.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:17 smithi120 ceph-mon[31737]: from='osd.5 [v2:172.21.15.165:6808/82324314,v1:172.21.15.165:6809/82324314]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]} : dispatch 2024-09-11T03:20:18.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:17 smithi120 ceph-mon[31737]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]} : dispatch 2024-09-11T03:20:18.171 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:17 smithi165 ceph-mon[31795]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-11T03:20:18.172 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:17 smithi165 ceph-mon[31795]: osdmap e33: 6 total, 5 up, 6 in 2024-09-11T03:20:18.172 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:17 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:20:18.172 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:17 smithi165 ceph-mon[31795]: from='osd.5 [v2:172.21.15.165:6808/82324314,v1:172.21.15.165:6809/82324314]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]} : dispatch 2024-09-11T03:20:18.172 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:17 smithi165 ceph-mon[31795]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]} : dispatch 2024-09-11T03:20:18.212 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T03:20:18.430 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:20:18 smithi165 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5[41979]: 2024-09-11T03:20:18.171+0000 7f7657402640 -1 osd.5 0 waiting for initial osdmap 2024-09-11T03:20:18.430 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:20:18 smithi165 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5[41979]: 2024-09-11T03:20:18.175+0000 7f764f221640 -1 osd.5 34 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-11T03:20:18.481 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:18.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:18 smithi050 ceph-mon[29717]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:20:18.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:18 smithi050 ceph-mon[29717]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-09-11T03:20:18.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:18 smithi050 ceph-mon[29717]: osdmap e34: 6 total, 5 up, 6 in 2024-09-11T03:20:18.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:18 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:20:18.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:18 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:20:18.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:18 smithi050 ceph-mon[29717]: from='osd.5 ' entity='osd.5' 2024-09-11T03:20:19.090 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:20:19.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:18 smithi120 ceph-mon[31737]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:20:19.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:18 smithi120 ceph-mon[31737]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-09-11T03:20:19.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:18 smithi120 ceph-mon[31737]: osdmap e34: 6 total, 5 up, 6 in 2024-09-11T03:20:19.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:18 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:20:19.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:18 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:20:19.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:18 smithi120 ceph-mon[31737]: from='osd.5 ' entity='osd.5' 2024-09-11T03:20:19.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:18 smithi165 ceph-mon[31795]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-11T03:20:19.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:18 smithi165 ceph-mon[31795]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-09-11T03:20:19.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:18 smithi165 ceph-mon[31795]: osdmap e34: 6 total, 5 up, 6 in 2024-09-11T03:20:19.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:18 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:20:19.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:18 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:20:19.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:18 smithi165 ceph-mon[31795]: from='osd.5 ' entity='osd.5' 2024-09-11T03:20:19.724 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:19 smithi050 ceph-mon[29717]: purged_snaps scrub starts 2024-09-11T03:20:19.724 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:19 smithi050 ceph-mon[29717]: purged_snaps scrub ok 2024-09-11T03:20:19.725 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:19 smithi050 ceph-mon[29717]: osd.5 [v2:172.21.15.165:6808/82324314,v1:172.21.15.165:6809/82324314] boot 2024-09-11T03:20:19.725 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:19 smithi050 ceph-mon[29717]: osdmap e35: 6 total, 6 up, 6 in 2024-09-11T03:20:19.725 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:19 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:20:19.725 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:19 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/313987840' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-11T03:20:19.753 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":35,"num_osds":6,"num_up_osds":6,"osd_up_since":1726024818,"num_in_osds":6,"osd_in_since":1726024797,"num_remapped_pgs":1} 2024-09-11T03:20:19.754 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-11T03:20:19.961 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:19 smithi165 ceph-mon[31795]: purged_snaps scrub starts 2024-09-11T03:20:19.961 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:19 smithi165 ceph-mon[31795]: purged_snaps scrub ok 2024-09-11T03:20:19.961 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:19 smithi165 ceph-mon[31795]: osd.5 [v2:172.21.15.165:6808/82324314,v1:172.21.15.165:6809/82324314] boot 2024-09-11T03:20:19.961 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:19 smithi165 ceph-mon[31795]: osdmap e35: 6 total, 6 up, 6 in 2024-09-11T03:20:19.961 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:19 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:20:19.961 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:19 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/313987840' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-11T03:20:20.005 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:20.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:19 smithi120 ceph-mon[31737]: purged_snaps scrub starts 2024-09-11T03:20:20.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:19 smithi120 ceph-mon[31737]: purged_snaps scrub ok 2024-09-11T03:20:20.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:19 smithi120 ceph-mon[31737]: osd.5 [v2:172.21.15.165:6808/82324314,v1:172.21.15.165:6809/82324314] boot 2024-09-11T03:20:20.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:19 smithi120 ceph-mon[31737]: osdmap e35: 6 total, 6 up, 6 in 2024-09-11T03:20:20.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:19 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-11T03:20:20.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:19 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/313987840' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-11T03:20:20.678 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:20:20.679 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":36,"fsid":"ff8a8a62-6feb-11ef-bcea-c7b262605968","created":"2024-09-11T03:15:41.838347+0000","modified":"2024-09-11T03:20:19.701603+0000","last_up_change":"2024-09-11T03:20:18.696274+0000","last_in_change":"2024-09-11T03:19:57.031634+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-11T03:19:05.496110+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","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":"cabbdbb5-0d64-42c9-b3fc-0092af90e837","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":1323814911},{"type":"v1","addr":"172.21.15.50:6803","nonce":1323814911}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":1323814911},{"type":"v1","addr":"172.21.15.50:6805","nonce":1323814911}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6808","nonce":1323814911},{"type":"v1","addr":"172.21.15.50:6809","nonce":1323814911}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":1323814911},{"type":"v1","addr":"172.21.15.50:6807","nonce":1323814911}]},"public_addr":"172.21.15.50:6803/1323814911","cluster_addr":"172.21.15.50:6805/1323814911","heartbeat_back_addr":"172.21.15.50:6809/1323814911","heartbeat_front_addr":"172.21.15.50:6807/1323814911","state":["exists","up"]},{"osd":1,"uuid":"f52d109e-b88b-410b-b232-36a68dd95b5f","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":3226237187},{"type":"v1","addr":"172.21.15.50:6811","nonce":3226237187}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":3226237187},{"type":"v1","addr":"172.21.15.50:6813","nonce":3226237187}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6816","nonce":3226237187},{"type":"v1","addr":"172.21.15.50:6817","nonce":3226237187}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":3226237187},{"type":"v1","addr":"172.21.15.50:6815","nonce":3226237187}]},"public_addr":"172.21.15.50:6811/3226237187","cluster_addr":"172.21.15.50:6813/3226237187","heartbeat_back_addr":"172.21.15.50:6817/3226237187","heartbeat_front_addr":"172.21.15.50:6815/3226237187","state":["exists","up"]},{"osd":2,"uuid":"70825d11-93af-4242-9a81-c4e78cdd81bc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6800","nonce":2319624376},{"type":"v1","addr":"172.21.15.120:6801","nonce":2319624376}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6802","nonce":2319624376},{"type":"v1","addr":"172.21.15.120:6803","nonce":2319624376}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6806","nonce":2319624376},{"type":"v1","addr":"172.21.15.120:6807","nonce":2319624376}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6804","nonce":2319624376},{"type":"v1","addr":"172.21.15.120:6805","nonce":2319624376}]},"public_addr":"172.21.15.120:6801/2319624376","cluster_addr":"172.21.15.120:6803/2319624376","heartbeat_back_addr":"172.21.15.120:6807/2319624376","heartbeat_front_addr":"172.21.15.120:6805/2319624376","state":["exists","up"]},{"osd":3,"uuid":"17067b00-bdc7-4856-b771-9ede8fdb1ee6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":35,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6808","nonce":4284416980},{"type":"v1","addr":"172.21.15.120:6809","nonce":4284416980}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6810","nonce":4284416980},{"type":"v1","addr":"172.21.15.120:6811","nonce":4284416980}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6814","nonce":4284416980},{"type":"v1","addr":"172.21.15.120:6815","nonce":4284416980}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6812","nonce":4284416980},{"type":"v1","addr":"172.21.15.120:6813","nonce":4284416980}]},"public_addr":"172.21.15.120:6809/4284416980","cluster_addr":"172.21.15.120:6811/4284416980","heartbeat_back_addr":"172.21.15.120:6815/4284416980","heartbeat_front_addr":"172.21.15.120:6813/4284416980","state":["exists","up"]},{"osd":4,"uuid":"ff27fd42-5dc7-4e47-b8f1-e32de70f5053","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6800","nonce":2302056764},{"type":"v1","addr":"172.21.15.165:6801","nonce":2302056764}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6802","nonce":2302056764},{"type":"v1","addr":"172.21.15.165:6803","nonce":2302056764}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6806","nonce":2302056764},{"type":"v1","addr":"172.21.15.165:6807","nonce":2302056764}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6804","nonce":2302056764},{"type":"v1","addr":"172.21.15.165:6805","nonce":2302056764}]},"public_addr":"172.21.15.165:6801/2302056764","cluster_addr":"172.21.15.165:6803/2302056764","heartbeat_back_addr":"172.21.15.165:6807/2302056764","heartbeat_front_addr":"172.21.15.165:6805/2302056764","state":["exists","up"]},{"osd":5,"uuid":"1d774bfe-ae91-4451-a07a-82c7cab8a1e8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6808","nonce":82324314},{"type":"v1","addr":"172.21.15.165:6809","nonce":82324314}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6810","nonce":82324314},{"type":"v1","addr":"172.21.15.165:6811","nonce":82324314}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6814","nonce":82324314},{"type":"v1","addr":"172.21.15.165:6815","nonce":82324314}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6812","nonce":82324314},{"type":"v1","addr":"172.21.15.165:6813","nonce":82324314}]},"public_addr":"172.21.15.165:6809/82324314","cluster_addr":"172.21.15.165:6811/82324314","heartbeat_back_addr":"172.21.15.165:6815/82324314","heartbeat_front_addr":"172.21.15.165:6813/82324314","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:18:10.530155+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:18:37.167452+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:19:03.157739+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:19:27.931572+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:19:53.239346+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:20:17.204717+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.50:6801/3882946798":"2024-09-12T03:16:39.032580+0000","172.21.15.50:0/1021961957":"2024-09-12T03:16:39.032580+0000","172.21.15.50:0/2559353198":"2024-09-12T03:16:39.032580+0000","172.21.15.50:0/2946524142":"2024-09-12T03:16:14.582971+0000","172.21.15.50:6800/3882946798":"2024-09-12T03:16:39.032580+0000","172.21.15.50:6801/3896944349":"2024-09-12T03:16:14.582971+0000","172.21.15.50:6800/3896944349":"2024-09-12T03:16:14.582971+0000","172.21.15.50:0/1693218364":"2024-09-12T03:16:39.032580+0000","172.21.15.50:0/2657906876":"2024-09-12T03:16:14.582971+0000","172.21.15.50:0/37940574":"2024-09-12T03:16:14.582971+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-11T03:20:20.981 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:20 smithi050 ceph-mon[29717]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 561 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:20.981 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:20 smithi050 ceph-mon[29717]: osdmap e36: 6 total, 6 up, 6 in 2024-09-11T03:20:20.981 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:20 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:20.981 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:20 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:20.981 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:20 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:20.982 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:20 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:20.982 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:20 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:20.982 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:20 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:20.982 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:20 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:20.982 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:20 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3097828055' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-11T03:20:21.100 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:20 smithi165 ceph-mon[31795]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 561 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:21.100 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:20 smithi165 ceph-mon[31795]: osdmap e36: 6 total, 6 up, 6 in 2024-09-11T03:20:21.100 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:20 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:21.101 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:20 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:21.101 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:20 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:21.101 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:20 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:21.101 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:20 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:21.101 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:20 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:21.101 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:20 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:21.101 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:20 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/3097828055' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-11T03:20:21.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:20 smithi120 ceph-mon[31737]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 561 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:21.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:20 smithi120 ceph-mon[31737]: osdmap e36: 6 total, 6 up, 6 in 2024-09-11T03:20:21.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:20 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:21.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:20 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:21.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:20 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:21.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:20 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:21.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:20 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:21.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:20 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:21.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:20 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:21.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:20 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/3097828055' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-11T03:20:21.322 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-11T03:19:05.496110+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '21', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 6, 'score_stable': 6, 'optimal_score': 0.5, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-09-11T03:20:21.322 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-11T03:20:21.582 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:21.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:21 smithi165 ceph-mon[31795]: Detected new or changed devices on smithi165 2024-09-11T03:20:21.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:21 smithi165 ceph-mon[31795]: osdmap e37: 6 total, 6 up, 6 in 2024-09-11T03:20:21.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:21 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:21.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:21 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:21.930 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:21 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:21.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:21 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:21.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:21 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:21.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:21 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:21.931 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:21 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:22.060 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:21 smithi050 ceph-mon[29717]: Detected new or changed devices on smithi165 2024-09-11T03:20:22.061 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:21 smithi050 ceph-mon[29717]: osdmap e37: 6 total, 6 up, 6 in 2024-09-11T03:20:22.061 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:21 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:22.061 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:21 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:22.061 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:21 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:22.061 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:21 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:22.061 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:21 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:22.062 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:21 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:22.062 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:21 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:22.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:21 smithi120 ceph-mon[31737]: Detected new or changed devices on smithi165 2024-09-11T03:20:22.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:21 smithi120 ceph-mon[31737]: osdmap e37: 6 total, 6 up, 6 in 2024-09-11T03:20:22.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:21 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:22.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:21 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:22.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:21 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:22.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:21 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:22.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:21 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:22.125 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:21 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:22.126 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:21 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:22.344 INFO:teuthology.orchestra.run.smithi050.stdout:pg_num: 1 2024-09-11T03:20:22.912 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:22 smithi050 ceph-mon[29717]: pgmap v138: 1 pgs: 1 remapped+peering; 577 KiB data, 562 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:22.912 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:22 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/2055158388' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-11T03:20:22.913 INFO:tasks.cephadm:Setting up client nodes... 2024-09-11T03:20:22.914 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph config log 1 --format=json 2024-09-11T03:20:23.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:22 smithi120 ceph-mon[31737]: pgmap v138: 1 pgs: 1 remapped+peering; 577 KiB data, 562 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:23.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:22 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/2055158388' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-11T03:20:23.166 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:23.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:22 smithi165 ceph-mon[31795]: pgmap v138: 1 pgs: 1 remapped+peering; 577 KiB data, 562 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:23.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:22 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/2055158388' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-11T03:20:23.838 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:20:24.436 INFO:teuthology.orchestra.run.smithi050.stdout:[{"version":19,"timestamp":"2024-09-11T03:20:18.173492+0000","name":"","changes":[{"name":"osd.5/osd_mclock_max_capacity_iops_ssd","new_value":"46860.946841"}]}] 2024-09-11T03:20:24.436 INFO:tasks.ceph_manager:config epoch is 19 2024-09-11T03:20:24.436 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-11T03:20:24.437 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-11T03:20:24.437 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph mgr dump --format=json 2024-09-11T03:20:24.692 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:24.980 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:24 smithi050 ceph-mon[29717]: pgmap v139: 1 pgs: 1 remapped+peering; 577 KiB data, 562 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:24.981 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:24 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/885754472' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-11T03:20:25.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:24 smithi120 ceph-mon[31737]: pgmap v139: 1 pgs: 1 remapped+peering; 577 KiB data, 562 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:25.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:24 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/885754472' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-11T03:20:25.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:24 smithi165 ceph-mon[31795]: pgmap v139: 1 pgs: 1 remapped+peering; 577 KiB data, 562 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:25.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:24 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/885754472' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-11T03:20:25.442 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:20:26.028 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:25 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3155004099' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-11T03:20:26.058 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":15,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6800","nonce":2097136019},{"type":"v1","addr":"172.21.15.50:6801","nonce":2097136019}]},"active_addr":"172.21.15.50:6801/2097136019","active_change":"2024-09-11T03:16:39.032690+0000","active_mgr_features":4540719139924082687,"available":true,"standbys":[{"gid":24107,"name":"b","mgr_features":4540719139924082687,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.27.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:1.26.1","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:latest","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB metrics exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.27.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:1.26.1","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:latest","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB metrics exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.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"]},"force_disabled_modules":{},"last_failure_osd_epoch":3,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.50:0","nonce":1415709231}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.50:0","nonce":1466072197}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.50:0","nonce":2499163991}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.50:0","nonce":4074215871}]}]} 2024-09-11T03:20:26.062 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-11T03:20:26.062 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-11T03:20:26.062 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-11T03:20:26.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:25 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/3155004099' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-11T03:20:26.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:25 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/3155004099' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-11T03:20:26.313 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:26.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:26 smithi120 ceph-mon[31737]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 90 KiB/s, 0 objects/s recovering 2024-09-11T03:20:26.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:26.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:26.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:26.992 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:20:26.993 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":37,"fsid":"ff8a8a62-6feb-11ef-bcea-c7b262605968","created":"2024-09-11T03:15:41.838347+0000","modified":"2024-09-11T03:20:20.705658+0000","last_up_change":"2024-09-11T03:20:18.696274+0000","last_in_change":"2024-09-11T03:19:57.031634+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-11T03:19:05.496110+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","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":"cabbdbb5-0d64-42c9-b3fc-0092af90e837","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":1323814911},{"type":"v1","addr":"172.21.15.50:6803","nonce":1323814911}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":1323814911},{"type":"v1","addr":"172.21.15.50:6805","nonce":1323814911}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6808","nonce":1323814911},{"type":"v1","addr":"172.21.15.50:6809","nonce":1323814911}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":1323814911},{"type":"v1","addr":"172.21.15.50:6807","nonce":1323814911}]},"public_addr":"172.21.15.50:6803/1323814911","cluster_addr":"172.21.15.50:6805/1323814911","heartbeat_back_addr":"172.21.15.50:6809/1323814911","heartbeat_front_addr":"172.21.15.50:6807/1323814911","state":["exists","up"]},{"osd":1,"uuid":"f52d109e-b88b-410b-b232-36a68dd95b5f","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":3226237187},{"type":"v1","addr":"172.21.15.50:6811","nonce":3226237187}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":3226237187},{"type":"v1","addr":"172.21.15.50:6813","nonce":3226237187}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6816","nonce":3226237187},{"type":"v1","addr":"172.21.15.50:6817","nonce":3226237187}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":3226237187},{"type":"v1","addr":"172.21.15.50:6815","nonce":3226237187}]},"public_addr":"172.21.15.50:6811/3226237187","cluster_addr":"172.21.15.50:6813/3226237187","heartbeat_back_addr":"172.21.15.50:6817/3226237187","heartbeat_front_addr":"172.21.15.50:6815/3226237187","state":["exists","up"]},{"osd":2,"uuid":"70825d11-93af-4242-9a81-c4e78cdd81bc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6800","nonce":2319624376},{"type":"v1","addr":"172.21.15.120:6801","nonce":2319624376}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6802","nonce":2319624376},{"type":"v1","addr":"172.21.15.120:6803","nonce":2319624376}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6806","nonce":2319624376},{"type":"v1","addr":"172.21.15.120:6807","nonce":2319624376}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6804","nonce":2319624376},{"type":"v1","addr":"172.21.15.120:6805","nonce":2319624376}]},"public_addr":"172.21.15.120:6801/2319624376","cluster_addr":"172.21.15.120:6803/2319624376","heartbeat_back_addr":"172.21.15.120:6807/2319624376","heartbeat_front_addr":"172.21.15.120:6805/2319624376","state":["exists","up"]},{"osd":3,"uuid":"17067b00-bdc7-4856-b771-9ede8fdb1ee6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":36,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6808","nonce":4284416980},{"type":"v1","addr":"172.21.15.120:6809","nonce":4284416980}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6810","nonce":4284416980},{"type":"v1","addr":"172.21.15.120:6811","nonce":4284416980}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6814","nonce":4284416980},{"type":"v1","addr":"172.21.15.120:6815","nonce":4284416980}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6812","nonce":4284416980},{"type":"v1","addr":"172.21.15.120:6813","nonce":4284416980}]},"public_addr":"172.21.15.120:6809/4284416980","cluster_addr":"172.21.15.120:6811/4284416980","heartbeat_back_addr":"172.21.15.120:6815/4284416980","heartbeat_front_addr":"172.21.15.120:6813/4284416980","state":["exists","up"]},{"osd":4,"uuid":"ff27fd42-5dc7-4e47-b8f1-e32de70f5053","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6800","nonce":2302056764},{"type":"v1","addr":"172.21.15.165:6801","nonce":2302056764}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6802","nonce":2302056764},{"type":"v1","addr":"172.21.15.165:6803","nonce":2302056764}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6806","nonce":2302056764},{"type":"v1","addr":"172.21.15.165:6807","nonce":2302056764}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6804","nonce":2302056764},{"type":"v1","addr":"172.21.15.165:6805","nonce":2302056764}]},"public_addr":"172.21.15.165:6801/2302056764","cluster_addr":"172.21.15.165:6803/2302056764","heartbeat_back_addr":"172.21.15.165:6807/2302056764","heartbeat_front_addr":"172.21.15.165:6805/2302056764","state":["exists","up"]},{"osd":5,"uuid":"1d774bfe-ae91-4451-a07a-82c7cab8a1e8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6808","nonce":82324314},{"type":"v1","addr":"172.21.15.165:6809","nonce":82324314}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6810","nonce":82324314},{"type":"v1","addr":"172.21.15.165:6811","nonce":82324314}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6814","nonce":82324314},{"type":"v1","addr":"172.21.15.165:6815","nonce":82324314}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6812","nonce":82324314},{"type":"v1","addr":"172.21.15.165:6813","nonce":82324314}]},"public_addr":"172.21.15.165:6809/82324314","cluster_addr":"172.21.15.165:6811/82324314","heartbeat_back_addr":"172.21.15.165:6815/82324314","heartbeat_front_addr":"172.21.15.165:6813/82324314","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:18:10.530155+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:18:37.167452+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:19:03.157739+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:19:27.931572+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:19:53.239346+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:20:17.204717+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.50:6801/3882946798":"2024-09-12T03:16:39.032580+0000","172.21.15.50:0/1021961957":"2024-09-12T03:16:39.032580+0000","172.21.15.50:0/2559353198":"2024-09-12T03:16:39.032580+0000","172.21.15.50:0/2946524142":"2024-09-12T03:16:14.582971+0000","172.21.15.50:6800/3882946798":"2024-09-12T03:16:39.032580+0000","172.21.15.50:6801/3896944349":"2024-09-12T03:16:14.582971+0000","172.21.15.50:6800/3896944349":"2024-09-12T03:16:14.582971+0000","172.21.15.50:0/1693218364":"2024-09-12T03:16:39.032580+0000","172.21.15.50:0/2657906876":"2024-09-12T03:16:14.582971+0000","172.21.15.50:0/37940574":"2024-09-12T03:16:14.582971+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-11T03:20:26.993 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:26 smithi050 ceph-mon[29717]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 90 KiB/s, 0 objects/s recovering 2024-09-11T03:20:26.993 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:26.993 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:26.993 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:27.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:26 smithi165 ceph-mon[31795]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 90 KiB/s, 0 objects/s recovering 2024-09-11T03:20:27.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:26 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:27.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:26 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:27.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:26 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:27.606 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-11T03:20:27.607 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-11T03:20:27.859 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:27.877 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:27 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/958010234' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-11T03:20:28.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:27 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/958010234' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-11T03:20:28.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:27 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/958010234' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-11T03:20:28.567 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:20:28.568 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":37,"fsid":"ff8a8a62-6feb-11ef-bcea-c7b262605968","created":"2024-09-11T03:15:41.838347+0000","modified":"2024-09-11T03:20:20.705658+0000","last_up_change":"2024-09-11T03:20:18.696274+0000","last_in_change":"2024-09-11T03:19:57.031634+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-11T03:19:05.496110+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","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":"cabbdbb5-0d64-42c9-b3fc-0092af90e837","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":1323814911},{"type":"v1","addr":"172.21.15.50:6803","nonce":1323814911}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":1323814911},{"type":"v1","addr":"172.21.15.50:6805","nonce":1323814911}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6808","nonce":1323814911},{"type":"v1","addr":"172.21.15.50:6809","nonce":1323814911}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":1323814911},{"type":"v1","addr":"172.21.15.50:6807","nonce":1323814911}]},"public_addr":"172.21.15.50:6803/1323814911","cluster_addr":"172.21.15.50:6805/1323814911","heartbeat_back_addr":"172.21.15.50:6809/1323814911","heartbeat_front_addr":"172.21.15.50:6807/1323814911","state":["exists","up"]},{"osd":1,"uuid":"f52d109e-b88b-410b-b232-36a68dd95b5f","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":3226237187},{"type":"v1","addr":"172.21.15.50:6811","nonce":3226237187}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":3226237187},{"type":"v1","addr":"172.21.15.50:6813","nonce":3226237187}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6816","nonce":3226237187},{"type":"v1","addr":"172.21.15.50:6817","nonce":3226237187}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":3226237187},{"type":"v1","addr":"172.21.15.50:6815","nonce":3226237187}]},"public_addr":"172.21.15.50:6811/3226237187","cluster_addr":"172.21.15.50:6813/3226237187","heartbeat_back_addr":"172.21.15.50:6817/3226237187","heartbeat_front_addr":"172.21.15.50:6815/3226237187","state":["exists","up"]},{"osd":2,"uuid":"70825d11-93af-4242-9a81-c4e78cdd81bc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6800","nonce":2319624376},{"type":"v1","addr":"172.21.15.120:6801","nonce":2319624376}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6802","nonce":2319624376},{"type":"v1","addr":"172.21.15.120:6803","nonce":2319624376}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6806","nonce":2319624376},{"type":"v1","addr":"172.21.15.120:6807","nonce":2319624376}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6804","nonce":2319624376},{"type":"v1","addr":"172.21.15.120:6805","nonce":2319624376}]},"public_addr":"172.21.15.120:6801/2319624376","cluster_addr":"172.21.15.120:6803/2319624376","heartbeat_back_addr":"172.21.15.120:6807/2319624376","heartbeat_front_addr":"172.21.15.120:6805/2319624376","state":["exists","up"]},{"osd":3,"uuid":"17067b00-bdc7-4856-b771-9ede8fdb1ee6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":36,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6808","nonce":4284416980},{"type":"v1","addr":"172.21.15.120:6809","nonce":4284416980}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6810","nonce":4284416980},{"type":"v1","addr":"172.21.15.120:6811","nonce":4284416980}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6814","nonce":4284416980},{"type":"v1","addr":"172.21.15.120:6815","nonce":4284416980}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6812","nonce":4284416980},{"type":"v1","addr":"172.21.15.120:6813","nonce":4284416980}]},"public_addr":"172.21.15.120:6809/4284416980","cluster_addr":"172.21.15.120:6811/4284416980","heartbeat_back_addr":"172.21.15.120:6815/4284416980","heartbeat_front_addr":"172.21.15.120:6813/4284416980","state":["exists","up"]},{"osd":4,"uuid":"ff27fd42-5dc7-4e47-b8f1-e32de70f5053","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6800","nonce":2302056764},{"type":"v1","addr":"172.21.15.165:6801","nonce":2302056764}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6802","nonce":2302056764},{"type":"v1","addr":"172.21.15.165:6803","nonce":2302056764}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6806","nonce":2302056764},{"type":"v1","addr":"172.21.15.165:6807","nonce":2302056764}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6804","nonce":2302056764},{"type":"v1","addr":"172.21.15.165:6805","nonce":2302056764}]},"public_addr":"172.21.15.165:6801/2302056764","cluster_addr":"172.21.15.165:6803/2302056764","heartbeat_back_addr":"172.21.15.165:6807/2302056764","heartbeat_front_addr":"172.21.15.165:6805/2302056764","state":["exists","up"]},{"osd":5,"uuid":"1d774bfe-ae91-4451-a07a-82c7cab8a1e8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6808","nonce":82324314},{"type":"v1","addr":"172.21.15.165:6809","nonce":82324314}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6810","nonce":82324314},{"type":"v1","addr":"172.21.15.165:6811","nonce":82324314}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6814","nonce":82324314},{"type":"v1","addr":"172.21.15.165:6815","nonce":82324314}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6812","nonce":82324314},{"type":"v1","addr":"172.21.15.165:6813","nonce":82324314}]},"public_addr":"172.21.15.165:6809/82324314","cluster_addr":"172.21.15.165:6811/82324314","heartbeat_back_addr":"172.21.15.165:6815/82324314","heartbeat_front_addr":"172.21.15.165:6813/82324314","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:18:10.530155+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:18:37.167452+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:19:03.157739+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:19:27.931572+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:19:53.239346+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T03:20:17.204717+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.50:6801/3882946798":"2024-09-12T03:16:39.032580+0000","172.21.15.50:0/1021961957":"2024-09-12T03:16:39.032580+0000","172.21.15.50:0/2559353198":"2024-09-12T03:16:39.032580+0000","172.21.15.50:0/2946524142":"2024-09-12T03:16:14.582971+0000","172.21.15.50:6800/3882946798":"2024-09-12T03:16:39.032580+0000","172.21.15.50:6801/3896944349":"2024-09-12T03:16:14.582971+0000","172.21.15.50:6800/3896944349":"2024-09-12T03:16:14.582971+0000","172.21.15.50:0/1693218364":"2024-09-12T03:16:39.032580+0000","172.21.15.50:0/2657906876":"2024-09-12T03:16:14.582971+0000","172.21.15.50:0/37940574":"2024-09-12T03:16:14.582971+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-11T03:20:28.877 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:28 smithi050 ceph-mon[29717]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T03:20:28.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:28 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/263854541' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-11T03:20:29.078 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:28 smithi120 ceph-mon[31737]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T03:20:29.078 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:28 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/263854541' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-11T03:20:29.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:28 smithi165 ceph-mon[31795]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T03:20:29.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:28 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/263854541' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-11T03:20:29.181 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-11T03:20:29.182 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-11T03:20:29.182 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-11T03:20:29.182 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-11T03:20:29.183 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-11T03:20:29.183 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-11T03:20:29.468 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:29.472 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:30.820 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:30 smithi120 ceph-mon[31737]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-11T03:20:30.853 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:30 smithi050 ceph-mon[29717]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-11T03:20:30.885 INFO:teuthology.orchestra.run.smithi050.stdout:150323855365 2024-09-11T03:20:30.886 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-11T03:20:31.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:30 smithi165 ceph-mon[31795]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-11T03:20:31.628 INFO:teuthology.orchestra.run.smithi050.stdout:77309411348 2024-09-11T03:20:31.629 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-11T03:20:31.652 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:31.655 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:31.693 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:32.836 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:32 smithi050 ceph-mon[29717]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-11T03:20:33.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:32 smithi120 ceph-mon[31737]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-11T03:20:33.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:32 smithi165 ceph-mon[31795]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-11T03:20:34.093 INFO:teuthology.orchestra.run.smithi050.stdout:124554051594 2024-09-11T03:20:34.093 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-11T03:20:34.604 INFO:teuthology.orchestra.run.smithi050.stdout:103079215119 2024-09-11T03:20:34.604 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-11T03:20:34.638 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:34.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:34 smithi050 ceph-mon[29717]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:20:34.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:34.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:34.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:35.013 INFO:teuthology.orchestra.run.smithi050.stdout:34359738400 2024-09-11T03:20:35.014 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-11T03:20:35.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:34 smithi120 ceph-mon[31737]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:20:35.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:34 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:35.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:34 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:35.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:34 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:35.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:34 smithi165 ceph-mon[31795]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:20:35.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:35.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:35.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:34 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:35.454 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:35.455 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:36.507 INFO:teuthology.orchestra.run.smithi050.stdout:150323855366 2024-09-11T03:20:36.705 INFO:teuthology.orchestra.run.smithi050.stdout:77309411349 2024-09-11T03:20:37.012 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:36 smithi050 ceph-mon[29717]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:20:37.016 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:36 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3051296423' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-11T03:20:37.016 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:36 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1239520249' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-11T03:20:37.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:36 smithi120 ceph-mon[31737]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:20:37.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:36 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/3051296423' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-11T03:20:37.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:36 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/1239520249' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-11T03:20:37.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:36 smithi165 ceph-mon[31795]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T03:20:37.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:36 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/3051296423' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-11T03:20:37.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:36 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/1239520249' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-11T03:20:37.420 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411348 got 77309411349 for osd.2 2024-09-11T03:20:37.420 DEBUG:teuthology.parallel:result is None 2024-09-11T03:20:37.843 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:37.846 INFO:teuthology.orchestra.run.smithi050.stdout:55834574874 2024-09-11T03:20:37.847 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-11T03:20:37.851 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:39.007 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:38 smithi050 ceph-mon[29717]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:39.023 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:39.048 INFO:tasks.cephadm.ceph_manager.ceph:need seq 150323855365 got 150323855366 for osd.5 2024-09-11T03:20:39.048 DEBUG:teuthology.parallel:result is None 2024-09-11T03:20:39.049 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:38 smithi165 ceph-mon[31795]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:39.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:38 smithi120 ceph-mon[31737]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:39.774 INFO:teuthology.orchestra.run.smithi050.stdout:124554051595 2024-09-11T03:20:39.998 INFO:teuthology.orchestra.run.smithi050.stdout:103079215120 2024-09-11T03:20:40.448 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051594 got 124554051595 for osd.4 2024-09-11T03:20:40.448 DEBUG:teuthology.parallel:result is None 2024-09-11T03:20:40.996 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:40 smithi050 ceph-mon[29717]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:40.996 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:40 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/2829624740' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-11T03:20:40.996 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:40 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3762889786' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-11T03:20:40.996 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:40.996 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:40.996 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:40 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:41.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:40 smithi120 ceph-mon[31737]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:41.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:40 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/2829624740' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-11T03:20:41.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:40 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/3762889786' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-11T03:20:41.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:41.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:41.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:40 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:41.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:40 smithi165 ceph-mon[31795]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:41.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:40 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/2829624740' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-11T03:20:41.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:40 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/3762889786' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-11T03:20:41.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:41.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:41.181 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:40 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:42.049 INFO:teuthology.orchestra.run.smithi050.stdout:34359738401 2024-09-11T03:20:42.275 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215119 got 103079215120 for osd.3 2024-09-11T03:20:42.275 DEBUG:teuthology.parallel:result is None 2024-09-11T03:20:42.865 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:42 smithi050 ceph-mon[29717]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:42.865 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:42 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3982529282' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-11T03:20:42.898 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738400 got 34359738401 for osd.0 2024-09-11T03:20:42.899 DEBUG:teuthology.parallel:result is None 2024-09-11T03:20:43.106 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:43.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:42 smithi120 ceph-mon[31737]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:43.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:42 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/3982529282' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-11T03:20:43.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:42 smithi165 ceph-mon[31795]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:43.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:42 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/3982529282' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-11T03:20:44.198 INFO:teuthology.orchestra.run.smithi050.stdout:55834574875 2024-09-11T03:20:44.852 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:44 smithi050 ceph-mon[29717]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:44.852 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:44 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3124718098' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-11T03:20:44.887 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574874 got 55834574875 for osd.1 2024-09-11T03:20:44.887 DEBUG:teuthology.parallel:result is None 2024-09-11T03:20:44.887 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-11T03:20:44.887 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph pg dump --format=json 2024-09-11T03:20:45.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:44 smithi120 ceph-mon[31737]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:45.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:44 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/3124718098' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-11T03:20:45.149 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:45.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:44 smithi165 ceph-mon[31795]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:45.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:44 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/3124718098' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-11T03:20:45.981 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:20:45.981 INFO:teuthology.orchestra.run.smithi050.stderr:dumped all 2024-09-11T03:20:46.589 INFO:teuthology.orchestra.run.smithi050.stdout:{"pg_ready":true,"pg_map":{"version":150,"stamp":"2024-09-11T03:20:45.078470+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":165892,"kb_used_data":3708,"kb_used_omap":9,"kb_used_meta":162038,"kb_avail":562305020,"statfs":{"total":575970213888,"available":575800340480,"internally_reserved":0,"allocated":3796992,"data_stored":2534574,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":165927584},"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.002420"},"pg_stats":[{"pgid":"1.0","version":"20'92","reported_seq":62,"reported_epoch":37,"state":"active+clean","last_fresh":"2024-09-11T03:20:21.098486+0000","last_change":"2024-09-11T03:20:21.098372+0000","last_active":"2024-09-11T03:20:21.098486+0000","last_peered":"2024-09-11T03:20:21.098486+0000","last_clean":"2024-09-11T03:20:21.098486+0000","last_became_active":"2024-09-11T03:20:21.093682+0000","last_became_peered":"2024-09-11T03:20:21.093682+0000","last_unstale":"2024-09-11T03:20:21.098486+0000","last_undegraded":"2024-09-11T03:20:21.098486+0000","last_fullsized":"2024-09-11T03:20:21.098486+0000","mapping_epoch":36,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":37,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-11T03:19:05.760747+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-11T03:19:05.760747+0000","last_clean_scrub_stamp":"2024-09-11T03:19:05.760747+0000","objects_scrubbed":0,"log_size":92,"log_dups_size":0,"ondisk_log_size":92,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-12T03:26:59.314344+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":35,"seq":150323855368,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27944,"kb_used_data":908,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717208,"statfs":{"total":95995035648,"available":95966420992,"internally_reserved":0,"allocated":929792,"data_stored":717613,"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":29,"seq":124554051597,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27364,"kb_used_data":328,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717788,"statfs":{"total":95995035648,"available":95967014912,"internally_reserved":0,"allocated":335872,"data_stored":127245,"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":24,"seq":103079215122,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27932,"kb_used_data":908,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717220,"statfs":{"total":95995035648,"available":95966433280,"internally_reserved":0,"allocated":929792,"data_stored":717613,"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":77309411351,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27936,"kb_used_data":908,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717216,"statfs":{"total":95995035648,"available":95966429184,"internally_reserved":0,"allocated":929792,"data_stored":717613,"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":1,"up_from":13,"seq":55834574876,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27360,"kb_used_data":328,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717792,"statfs":{"total":95995035648,"available":95967019008,"internally_reserved":0,"allocated":335872,"data_stored":127245,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738402,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27356,"kb_used_data":328,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717796,"statfs":{"total":95995035648,"available":95967023104,"internally_reserved":0,"allocated":335872,"data_stored":127245,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":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-09-11T03:20:46.589 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph pg dump --format=json 2024-09-11T03:20:46.846 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:46.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:46 smithi050 ceph-mon[29717]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:46.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:46 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:46.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:46 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:46.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:46 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:47.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:46 smithi120 ceph-mon[31737]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:47.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:46 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:47.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:46 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:47.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:46 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:47.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:46 smithi165 ceph-mon[31795]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:47.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:46 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:47.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:46 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:47.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:46 smithi165 ceph-mon[31795]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:47.487 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:20:47.488 INFO:teuthology.orchestra.run.smithi050.stderr:dumped all 2024-09-11T03:20:48.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:47 smithi050 ceph-mon[29717]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:20:48.119 INFO:teuthology.orchestra.run.smithi050.stdout:{"pg_ready":true,"pg_map":{"version":151,"stamp":"2024-09-11T03:20:47.078743+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":165892,"kb_used_data":3708,"kb_used_omap":9,"kb_used_meta":162038,"kb_avail":562305020,"statfs":{"total":575970213888,"available":575800340480,"internally_reserved":0,"allocated":3796992,"data_stored":2534574,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":165927584},"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.002360"},"pg_stats":[{"pgid":"1.0","version":"20'92","reported_seq":62,"reported_epoch":37,"state":"active+clean","last_fresh":"2024-09-11T03:20:21.098486+0000","last_change":"2024-09-11T03:20:21.098372+0000","last_active":"2024-09-11T03:20:21.098486+0000","last_peered":"2024-09-11T03:20:21.098486+0000","last_clean":"2024-09-11T03:20:21.098486+0000","last_became_active":"2024-09-11T03:20:21.093682+0000","last_became_peered":"2024-09-11T03:20:21.093682+0000","last_unstale":"2024-09-11T03:20:21.098486+0000","last_undegraded":"2024-09-11T03:20:21.098486+0000","last_fullsized":"2024-09-11T03:20:21.098486+0000","mapping_epoch":36,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":37,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-11T03:19:05.760747+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-11T03:19:05.760747+0000","last_clean_scrub_stamp":"2024-09-11T03:19:05.760747+0000","objects_scrubbed":0,"log_size":92,"log_dups_size":0,"ondisk_log_size":92,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-12T03:26:59.314344+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":35,"seq":150323855368,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27944,"kb_used_data":908,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717208,"statfs":{"total":95995035648,"available":95966420992,"internally_reserved":0,"allocated":929792,"data_stored":717613,"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":29,"seq":124554051597,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27364,"kb_used_data":328,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717788,"statfs":{"total":95995035648,"available":95967014912,"internally_reserved":0,"allocated":335872,"data_stored":127245,"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":24,"seq":103079215122,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27932,"kb_used_data":908,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717220,"statfs":{"total":95995035648,"available":95966433280,"internally_reserved":0,"allocated":929792,"data_stored":717613,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411352,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27936,"kb_used_data":908,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717216,"statfs":{"total":95995035648,"available":95966429184,"internally_reserved":0,"allocated":929792,"data_stored":717613,"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":1,"up_from":13,"seq":55834574876,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27360,"kb_used_data":328,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717792,"statfs":{"total":95995035648,"available":95967019008,"internally_reserved":0,"allocated":335872,"data_stored":127245,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738402,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27356,"kb_used_data":328,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717796,"statfs":{"total":95995035648,"available":95967023104,"internally_reserved":0,"allocated":335872,"data_stored":127245,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":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-09-11T03:20:48.119 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-11T03:20:48.120 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-11T03:20:48.120 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-11T03:20:48.120 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- ceph health --format=json 2024-09-11T03:20:48.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:47 smithi120 ceph-mon[31737]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:20:48.179 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:47 smithi165 ceph-mon[31795]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:20:48.372 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:49.038 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:48 smithi120 ceph-mon[31737]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:49.038 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:48 smithi120 ceph-mon[31737]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:20:49.040 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-11T03:20:49.040 INFO:teuthology.orchestra.run.smithi050.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-11T03:20:49.040 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:48 smithi050 ceph-mon[29717]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:49.040 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:48 smithi050 ceph-mon[29717]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:20:49.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:48 smithi165 ceph-mon[31795]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:49.180 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:48 smithi165 ceph-mon[31795]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:20:49.677 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-11T03:20:49.677 INFO:tasks.cephadm:Setup complete, yielding 2024-09-11T03:20:49.677 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-11T03:20:49.687 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-09-11T03:20:49.688 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 -- bash -c 'set -ex 2024-09-11T03:20:49.688 DEBUG:teuthology.orchestra.run.smithi050:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-11T03:20:49.688 DEBUG:teuthology.orchestra.run.smithi050:> for host in $HOSTNAMES; do 2024-09-11T03:20:49.688 DEBUG:teuthology.orchestra.run.smithi050:> # find the hostname for "host.c" which will have no mgr 2024-09-11T03:20:49.688 DEBUG:teuthology.orchestra.run.smithi050:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-11T03:20:49.688 DEBUG:teuthology.orchestra.run.smithi050:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-11T03:20:49.688 DEBUG:teuthology.orchestra.run.smithi050:> HOST_C="${host}" 2024-09-11T03:20:49.688 DEBUG:teuthology.orchestra.run.smithi050:> fi 2024-09-11T03:20:49.688 DEBUG:teuthology.orchestra.run.smithi050:> done 2024-09-11T03:20:49.688 DEBUG:teuthology.orchestra.run.smithi050:> # One last thing to worry about before draining the host 2024-09-11T03:20:49.688 DEBUG:teuthology.orchestra.run.smithi050:> # is that the teuthology test tends to put the explicit 2024-09-11T03:20:49.688 DEBUG:teuthology.orchestra.run.smithi050:> # hostnames in the placement for the mon service. 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> # We want to make sure we can drain without providing 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> # --force and there is a check for the host being removed 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> # being listed explicitly in the placements. Therefore, 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> # we should remove it from the mon placement. 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> ceph orch ls mon --export > mon.yaml 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> ceph orch apply -i mon_adjusted.yaml 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> # now drain that host 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> # wait for drain to complete 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> sleep 15 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-11T03:20:49.689 DEBUG:teuthology.orchestra.run.smithi050:> done 2024-09-11T03:20:49.690 DEBUG:teuthology.orchestra.run.smithi050:> # we want to check the ability to remove the host from 2024-09-11T03:20:49.690 DEBUG:teuthology.orchestra.run.smithi050:> # the CRUSH map, so we should first verify the host is in 2024-09-11T03:20:49.690 DEBUG:teuthology.orchestra.run.smithi050:> # the CRUSH map. 2024-09-11T03:20:49.690 DEBUG:teuthology.orchestra.run.smithi050:> ceph osd getcrushmap -o compiled-crushmap 2024-09-11T03:20:49.690 DEBUG:teuthology.orchestra.run.smithi050:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-11T03:20:49.690 DEBUG:teuthology.orchestra.run.smithi050:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-11T03:20:49.690 DEBUG:teuthology.orchestra.run.smithi050:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-11T03:20:49.690 DEBUG:teuthology.orchestra.run.smithi050:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-11T03:20:49.690 DEBUG:teuthology.orchestra.run.smithi050:> exit 1 2024-09-11T03:20:49.690 DEBUG:teuthology.orchestra.run.smithi050:> fi 2024-09-11T03:20:49.690 DEBUG:teuthology.orchestra.run.smithi050:> # If the drain was successful, we should be able to remove the 2024-09-11T03:20:49.690 DEBUG:teuthology.orchestra.run.smithi050:> # host without force with no issues. If there are still daemons 2024-09-11T03:20:49.691 DEBUG:teuthology.orchestra.run.smithi050:> # we will get a response telling us to drain the host and a 2024-09-11T03:20:49.691 DEBUG:teuthology.orchestra.run.smithi050:> # non-zero return code 2024-09-11T03:20:49.691 DEBUG:teuthology.orchestra.run.smithi050:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-11T03:20:49.691 DEBUG:teuthology.orchestra.run.smithi050:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-11T03:20:49.691 DEBUG:teuthology.orchestra.run.smithi050:> sleep 30 2024-09-11T03:20:49.691 DEBUG:teuthology.orchestra.run.smithi050:> ceph osd getcrushmap -o compiled-crushmap 2024-09-11T03:20:49.691 DEBUG:teuthology.orchestra.run.smithi050:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-11T03:20:49.691 DEBUG:teuthology.orchestra.run.smithi050:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-11T03:20:49.691 DEBUG:teuthology.orchestra.run.smithi050:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-11T03:20:49.691 DEBUG:teuthology.orchestra.run.smithi050:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-11T03:20:49.691 DEBUG:teuthology.orchestra.run.smithi050:> exit 1 2024-09-11T03:20:49.691 DEBUG:teuthology.orchestra.run.smithi050:> fi 2024-09-11T03:20:49.692 DEBUG:teuthology.orchestra.run.smithi050:> ' 2024-09-11T03:20:49.946 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T03:20:50.013 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:49 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/3716964842' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-11T03:20:50.055 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:49 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3716964842' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-11T03:20:50.081 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:49 smithi165 ceph-mon[31795]: from='client.? 172.21.15.50:0/3716964842' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-11T03:20:50.374 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch host ls --format json 2024-09-11T03:20:50.374 INFO:teuthology.orchestra.run.smithi050.stderr:++ jq -r '.[] | .hostname' 2024-09-11T03:20:50.586 INFO:teuthology.orchestra.run.smithi050.stderr:+ HOSTNAMES='smithi050 2024-09-11T03:20:50.586 INFO:teuthology.orchestra.run.smithi050.stderr:smithi120 2024-09-11T03:20:50.586 INFO:teuthology.orchestra.run.smithi050.stderr:smithi165' 2024-09-11T03:20:50.586 INFO:teuthology.orchestra.run.smithi050.stderr:+ for host in $HOSTNAMES 2024-09-11T03:20:50.587 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch ps --hostname smithi050 --format json 2024-09-11T03:20:50.587 INFO:teuthology.orchestra.run.smithi050.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-11T03:20:50.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:50 smithi120 ceph-mon[31737]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:50.879 INFO:teuthology.orchestra.run.smithi050.stderr:+ HAS_MGRS=true 2024-09-11T03:20:50.879 INFO:teuthology.orchestra.run.smithi050.stderr:+ '[' true == false ']' 2024-09-11T03:20:50.879 INFO:teuthology.orchestra.run.smithi050.stderr:+ for host in $HOSTNAMES 2024-09-11T03:20:50.879 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch ps --hostname smithi120 --format json 2024-09-11T03:20:50.879 INFO:teuthology.orchestra.run.smithi050.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-11T03:20:51.098 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:50 smithi165 ceph-mon[31795]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:51.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:50 smithi050 ceph-mon[29717]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:51.172 INFO:teuthology.orchestra.run.smithi050.stderr:+ HAS_MGRS=true 2024-09-11T03:20:51.172 INFO:teuthology.orchestra.run.smithi050.stderr:+ '[' true == false ']' 2024-09-11T03:20:51.172 INFO:teuthology.orchestra.run.smithi050.stderr:+ for host in $HOSTNAMES 2024-09-11T03:20:51.172 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch ps --hostname smithi165 --format json 2024-09-11T03:20:51.172 INFO:teuthology.orchestra.run.smithi050.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-11T03:20:51.465 INFO:teuthology.orchestra.run.smithi050.stderr:+ HAS_MGRS=false 2024-09-11T03:20:51.465 INFO:teuthology.orchestra.run.smithi050.stderr:+ '[' false == false ']' 2024-09-11T03:20:51.466 INFO:teuthology.orchestra.run.smithi050.stderr:+ HOST_C=smithi165 2024-09-11T03:20:51.466 INFO:teuthology.orchestra.run.smithi050.stderr:+ ceph orch ls mon --export 2024-09-11T03:20:51.755 INFO:teuthology.orchestra.run.smithi050.stderr:+ sed /smithi165/d mon.yaml 2024-09-11T03:20:51.756 INFO:teuthology.orchestra.run.smithi050.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-09-11T03:20:52.049 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:51 smithi050 ceph-mon[29717]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:20:52.049 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:51 smithi050 ceph-mon[29717]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi050", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:20:52.049 INFO:teuthology.orchestra.run.smithi050.stdout:Scheduled mon update... 2024-09-11T03:20:52.061 INFO:teuthology.orchestra.run.smithi050.stderr:+ ceph orch host drain smithi165 --zap-osd-devices 2024-09-11T03:20:52.091 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:51 smithi165 ceph-mon[31795]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:20:52.091 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:51 smithi165 ceph-mon[31795]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi050", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:20:52.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:51 smithi120 ceph-mon[31737]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:20:52.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:51 smithi120 ceph-mon[31737]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi050", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T03:20:52.362 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:52 smithi165 podman[43586]: 2024-09-11 03:20:52.091197526 +0000 UTC m=+0.017790102 container died caf3fd76368c654130af5c5fff586376e208f4d15af221df9bef739b5593e401 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-c, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-11T03:20:52.613 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:52 smithi165 podman[43586]: 2024-09-11 03:20:52.603973908 +0000 UTC m=+0.530566521 container remove caf3fd76368c654130af5c5fff586376e208f4d15af221df9bef739b5593e401 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-c, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, ceph=True, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, org.label-schema.license=GPLv2) 2024-09-11T03:20:53.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:53 smithi165 systemd[1]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.c.service: Deactivated successfully. 2024-09-11T03:20:53.430 INFO:journalctl@ceph.mon.c.smithi165.stdout:Sep 11 03:20:53 smithi165 systemd[1]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.c.service: Consumed 2.905s CPU time. 2024-09-11T03:20:54.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:20:54.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: Saving service mon spec with placement smithi050:172.21.15.50=a;smithi120:172.21.15.120=b;count:3 2024-09-11T03:20:54.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-11T03:20:54.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: Removing monitor c from monmap... 2024-09-11T03:20:54.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-11T03:20:54.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:20:54.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:20:54.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: mon.b calling monitor election 2024-09-11T03:20:54.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:54.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: mon.a calling monitor election 2024-09-11T03:20:54.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-11T03:20:54.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: monmap epoch 4 2024-09-11T03:20:54.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:20:54.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: last_changed 2024-09-11T03:20:52.061087+0000 2024-09-11T03:20:54.380 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: created 2024-09-11T03:15:38.656471+0000 2024-09-11T03:20:54.380 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: min_mon_release 19 (squid) 2024-09-11T03:20:54.380 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: election_strategy: 1 2024-09-11T03:20:54.380 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-09-11T03:20:54.380 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: 1: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.b 2024-09-11T03:20:54.380 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: fsmap 2024-09-11T03:20:54.380 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: osdmap e37: 6 total, 6 up, 6 in 2024-09-11T03:20:54.380 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-11T03:20:54.380 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:54 smithi050 ceph-mon[29717]: overall HEALTH_OK 2024-09-11T03:20:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:20:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: Saving service mon spec with placement smithi050:172.21.15.50=a;smithi120:172.21.15.120=b;count:3 2024-09-11T03:20:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-11T03:20:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: Removing monitor c from monmap... 2024-09-11T03:20:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-11T03:20:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-11T03:20:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-11T03:20:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: mon.b calling monitor election 2024-09-11T03:20:54.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: mon.a calling monitor election 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: monmap epoch 4 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: last_changed 2024-09-11T03:20:52.061087+0000 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: created 2024-09-11T03:15:38.656471+0000 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: min_mon_release 19 (squid) 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: election_strategy: 1 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: 1: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.b 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: fsmap 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: osdmap e37: 6 total, 6 up, 6 in 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-11T03:20:54.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:54 smithi120 ceph-mon[31737]: overall HEALTH_OK 2024-09-11T03:20:55.431 INFO:teuthology.orchestra.run.smithi050.stdout:Scheduled to remove the following daemons from host 'smithi165' 2024-09-11T03:20:55.432 INFO:teuthology.orchestra.run.smithi050.stdout:type id 2024-09-11T03:20:55.432 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------- --------------- 2024-09-11T03:20:55.432 INFO:teuthology.orchestra.run.smithi050.stdout:agent smithi165 2024-09-11T03:20:55.432 INFO:teuthology.orchestra.run.smithi050.stdout:osd 4 2024-09-11T03:20:55.432 INFO:teuthology.orchestra.run.smithi050.stdout:osd 5 2024-09-11T03:20:55.443 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch ps --hostname smithi165 2024-09-11T03:20:55.444 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:55 smithi050 ceph-mon[29717]: Removing daemon mon.c from smithi165 -- ports [] 2024-09-11T03:20:55.444 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:55.444 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:55.444 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:55.444 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:55.444 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:55.444 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:55.444 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:55.445 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:55.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:55 smithi120 ceph-mon[31737]: Removing daemon mon.c from smithi165 -- ports [] 2024-09-11T03:20:55.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:55.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:55.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:55.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:55.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:55.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:20:55.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:20:55.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:20:55.740 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-09-11T03:20:55.740 INFO:teuthology.orchestra.run.smithi050.stderr:agent.smithi165 smithi165 running 15s ago 3m - - 2024-09-11T03:20:55.740 INFO:teuthology.orchestra.run.smithi050.stderr:osd.4 smithi165 running (68s) 15s ago 68s 41.8M 9.84G 19.3.0-4854-g8f219c47 589dd18248e4 7da78fae9952 2024-09-11T03:20:55.740 INFO:teuthology.orchestra.run.smithi050.stderr:osd.5 smithi165 running (45s) 15s ago 44s 39.2M 9.84G 19.3.0-4854-g8f219c47 589dd18248e4 e06e45ec9835 ' 2024-09-11T03:20:55.740 INFO:teuthology.orchestra.run.smithi050.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-11T03:20:55.741 INFO:teuthology.orchestra.run.smithi050.stderr:agent.smithi165 smithi165 running 15s ago 3m - - 2024-09-11T03:20:55.741 INFO:teuthology.orchestra.run.smithi050.stderr:osd.4 smithi165 running (68s) 15s ago 68s 41.8M 9.84G 19.3.0-4854-g8f219c47 589dd18248e4 7da78fae9952 2024-09-11T03:20:55.741 INFO:teuthology.orchestra.run.smithi050.stderr:osd.5 smithi165 running (45s) 15s ago 44s 39.2M 9.84G 19.3.0-4854-g8f219c47 589dd18248e4 e06e45ec9835 ' '!=' 'No daemons reported' ']' 2024-09-11T03:20:55.741 INFO:teuthology.orchestra.run.smithi050.stderr:+ sleep 15 2024-09-11T03:20:56.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: Updating smithi050:/etc/ceph/ceph.conf 2024-09-11T03:20:56.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: Updating smithi120:/etc/ceph/ceph.conf 2024-09-11T03:20:56.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: Updating smithi165:/etc/ceph/ceph.conf 2024-09-11T03:20:56.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:56.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: Updating smithi050:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:20:56.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: Updating smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:20:56.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: Updating smithi120:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:20:56.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='client.24345 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi165", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:20:56.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: Added label _no_schedule to host smithi165 2024-09-11T03:20:56.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: Added label _no_conf_keyring to host smithi165 2024-09-11T03:20:56.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-11T03:20:56.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: osd.4 crush weight is 0.0872955322265625 2024-09-11T03:20:56.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-11T03:20:56.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: osd.5 crush weight is 0.0872955322265625 2024-09-11T03:20:56.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.876 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.876 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-11T03:20:56.876 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T03:20:56.876 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-11T03:20:56.876 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T03:20:56.876 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2024-09-11T03:20:56.876 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-11T03:20:56.876 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2024-09-11T03:20:56.876 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:56 smithi120 ceph-mon[31737]: from='client.14540 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:20:56.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: Updating smithi050:/etc/ceph/ceph.conf 2024-09-11T03:20:56.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: Updating smithi120:/etc/ceph/ceph.conf 2024-09-11T03:20:56.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: Updating smithi165:/etc/ceph/ceph.conf 2024-09-11T03:20:56.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:56.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: Updating smithi050:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: Updating smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: Updating smithi120:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='client.24345 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi165", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: Added label _no_schedule to host smithi165 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: Added label _no_conf_keyring to host smithi165 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: osd.4 crush weight is 0.0872955322265625 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: osd.5 crush weight is 0.0872955322265625 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:20:56.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-11T03:20:56.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T03:20:56.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-11T03:20:56.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T03:20:56.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2024-09-11T03:20:56.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-11T03:20:56.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2024-09-11T03:20:56.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-mon[29717]: from='client.14540 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:20:56.880 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:56 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a[29694]: 2024-09-11T03:20:56.470+0000 7fa7ce519640 -1 mon.a@0(leader).osd e38 definitely_dead 0 2024-09-11T03:20:57.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:57 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-11T03:20:57.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:57 smithi120 ceph-mon[31737]: osdmap e38: 6 total, 6 up, 6 in 2024-09-11T03:20:57.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:57 smithi120 ceph-mon[31737]: osd.5 weight is now 0.0 2024-09-11T03:20:57.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:57 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-11T03:20:57.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:57 smithi120 ceph-mon[31737]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T03:20:57.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:57 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2024-09-11T03:20:57.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:57 smithi120 ceph-mon[31737]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-11T03:20:57.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:57 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2024-09-11T03:20:57.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:57 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-11T03:20:57.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:57 smithi050 ceph-mon[29717]: osdmap e38: 6 total, 6 up, 6 in 2024-09-11T03:20:57.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:57 smithi050 ceph-mon[29717]: osd.5 weight is now 0.0 2024-09-11T03:20:57.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:57 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-11T03:20:57.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:57 smithi050 ceph-mon[29717]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T03:20:57.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:57 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2024-09-11T03:20:57.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:57 smithi050 ceph-mon[29717]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-11T03:20:57.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:57 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2024-09-11T03:20:58.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:58 smithi120 ceph-mon[31737]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:58.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:58 smithi120 ceph-mon[31737]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T03:20:58.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:58 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-11T03:20:58.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:58 smithi120 ceph-mon[31737]: osdmap e39: 6 total, 5 up, 6 in 2024-09-11T03:20:58.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:58 smithi120 ceph-mon[31737]: osd.4 now down 2024-09-11T03:20:58.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:58 smithi120 ceph-mon[31737]: Removing daemon osd.4 from smithi165 -- ports [] 2024-09-11T03:20:58.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:20:58 smithi120 ceph-mon[31737]: osdmap e40: 6 total, 5 up, 6 in 2024-09-11T03:20:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:58 smithi050 ceph-mon[29717]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:20:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:58 smithi050 ceph-mon[29717]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T03:20:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:58 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-11T03:20:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:58 smithi050 ceph-mon[29717]: osdmap e39: 6 total, 5 up, 6 in 2024-09-11T03:20:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:58 smithi050 ceph-mon[29717]: osd.4 now down 2024-09-11T03:20:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:58 smithi050 ceph-mon[29717]: Removing daemon osd.4 from smithi165 -- ports [] 2024-09-11T03:20:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:20:58 smithi050 ceph-mon[29717]: osdmap e40: 6 total, 5 up, 6 in 2024-09-11T03:20:59.180 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:20:58 smithi165 systemd[1]: Stopping Ceph osd.4 for ff8a8a62-6feb-11ef-bcea-c7b262605968... 2024-09-11T03:20:59.680 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:20:59 smithi165 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4[38172]: 2024-09-11T03:20:59.515+0000 7fda08b16640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.4 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-11T03:20:59.680 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:20:59 smithi165 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4[38172]: 2024-09-11T03:20:59.515+0000 7fda08b16640 -1 osd.4 38 *** Got signal Terminated *** 2024-09-11T03:20:59.680 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:20:59 smithi165 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4[38172]: 2024-09-11T03:20:59.515+0000 7fda08b16640 -1 osd.4 38 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-11T03:21:00.252 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:00.252 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:00 smithi050 ceph-mon[29717]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:21:00.253 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:00.253 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:00.253 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:00.253 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:00 smithi050 ceph-mon[29717]: osdmap e41: 6 total, 5 up, 6 in 2024-09-11T03:21:00.253 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:00 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:00.314 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:00 smithi165 podman[44759]: 2024-09-11 03:21:00.047017786 +0000 UTC m=+0.631529426 container died 7da78fae9952b67a525cf696e4c6c3d5d346cb2b43b6cb77ab1b6ef4682acb1a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4, GIT_CLEAN=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.schema-version=1.0, ceph=True, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux ) 2024-09-11T03:21:00.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:00.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:00 smithi120 ceph-mon[31737]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-11T03:21:00.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:00.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:00.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:00.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:00 smithi120 ceph-mon[31737]: osdmap e41: 6 total, 5 up, 6 in 2024-09-11T03:21:00.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:00 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:00.664 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:00 smithi165 podman[44759]: 2024-09-11 03:21:00.405040506 +0000 UTC m=+0.989552149 container cleanup 7da78fae9952b67a525cf696e4c6c3d5d346cb2b43b6cb77ab1b6ef4682acb1a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731) 2024-09-11T03:21:00.664 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:00 smithi165 bash[44759]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4 2024-09-11T03:21:00.930 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:00 smithi165 podman[44779]: 2024-09-11 03:21:00.664642688 +0000 UTC m=+0.620606386 container remove 7da78fae9952b67a525cf696e4c6c3d5d346cb2b43b6cb77ab1b6ef4682acb1a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, ceph=True, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS) 2024-09-11T03:21:01.275 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:00 smithi165 podman[44875]: 2024-09-11 03:21:00.965542209 +0000 UTC m=+0.107457328 container create a75f26cc6b1468b2dade95bd3eec60f0098f5f4495bfed1f6a7f189a1348300b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4-deactivate, org.label-schema.schema-version=1.0, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, ceph=True, GIT_CLEAN=True, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-11T03:21:01.275 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:00 smithi165 podman[44875]: 2024-09-11 03:21:00.873749236 +0000 UTC m=+0.015664355 image pull 589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e 2024-09-11T03:21:01.275 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:01 smithi165 podman[44875]: 2024-09-11 03:21:01.167777089 +0000 UTC m=+0.309692217 container init a75f26cc6b1468b2dade95bd3eec60f0098f5f4495bfed1f6a7f189a1348300b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4-deactivate, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, ceph=True) 2024-09-11T03:21:01.275 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:01 smithi165 podman[44875]: 2024-09-11 03:21:01.172637304 +0000 UTC m=+0.314552421 container start a75f26cc6b1468b2dade95bd3eec60f0098f5f4495bfed1f6a7f189a1348300b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4-deactivate, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, GIT_CLEAN=True, GIT_BRANCH=HEAD, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=) 2024-09-11T03:21:01.275 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:01 smithi165 podman[44875]: 2024-09-11 03:21:01.275774258 +0000 UTC m=+0.417689380 container attach a75f26cc6b1468b2dade95bd3eec60f0098f5f4495bfed1f6a7f189a1348300b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4-deactivate, GIT_CLEAN=True, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, ceph=True) 2024-09-11T03:21:01.653 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:01 smithi165 podman[44875]: 2024-09-11 03:21:01.364164212 +0000 UTC m=+0.506079330 container died a75f26cc6b1468b2dade95bd3eec60f0098f5f4495bfed1f6a7f189a1348300b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4-deactivate, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_CLEAN=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4) 2024-09-11T03:21:02.179 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:01 smithi165 podman[44919]: 2024-09-11 03:21:01.920427048 +0000 UTC m=+0.546386535 container remove a75f26cc6b1468b2dade95bd3eec60f0098f5f4495bfed1f6a7f189a1348300b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-4-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, ceph=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-11T03:21:02.180 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:01 smithi165 systemd[1]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.4.service: Deactivated successfully. 2024-09-11T03:21:02.180 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:01 smithi165 systemd[1]: Stopped Ceph osd.4 for ff8a8a62-6feb-11ef-bcea-c7b262605968. 2024-09-11T03:21:02.180 INFO:journalctl@ceph.osd.4.smithi165.stdout:Sep 11 03:21:01 smithi165 systemd[1]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.4.service: Consumed 1.878s CPU time. 2024-09-11T03:21:02.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:02 smithi050 ceph-mon[29717]: pgmap v162: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-11T03:21:02.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:02 smithi120 ceph-mon[31737]: pgmap v162: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-11T03:21:03.377 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:03 smithi050 ceph-mon[29717]: Removing key for osd.4 2024-09-11T03:21:03.377 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:03 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2024-09-11T03:21:03.377 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:03 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-11T03:21:03.377 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:03 smithi050 ceph-mon[29717]: Successfully removed osd.4 on smithi165 2024-09-11T03:21:03.377 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:03 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2024-09-11T03:21:03.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:03 smithi050 ceph-mon[29717]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T03:21:03.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:03 smithi050 ceph-mon[29717]: Cluster is now healthy 2024-09-11T03:21:03.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:03 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-11T03:21:03.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:03 smithi050 ceph-mon[29717]: osdmap e42: 5 total, 5 up, 5 in 2024-09-11T03:21:03.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:03 smithi050 ceph-mon[29717]: Successfully purged osd.4 on smithi165 2024-09-11T03:21:03.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:03 smithi050 ceph-mon[29717]: Zapping devices for osd.4 on smithi165 2024-09-11T03:21:03.623 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:03 smithi120 ceph-mon[31737]: Removing key for osd.4 2024-09-11T03:21:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:03 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2024-09-11T03:21:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:03 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-11T03:21:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:03 smithi120 ceph-mon[31737]: Successfully removed osd.4 on smithi165 2024-09-11T03:21:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:03 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2024-09-11T03:21:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:03 smithi120 ceph-mon[31737]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T03:21:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:03 smithi120 ceph-mon[31737]: Cluster is now healthy 2024-09-11T03:21:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:03 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-11T03:21:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:03 smithi120 ceph-mon[31737]: osdmap e42: 5 total, 5 up, 5 in 2024-09-11T03:21:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:03 smithi120 ceph-mon[31737]: Successfully purged osd.4 on smithi165 2024-09-11T03:21:03.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:03 smithi120 ceph-mon[31737]: Zapping devices for osd.4 on smithi165 2024-09-11T03:21:04.623 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:04 smithi120 ceph-mon[31737]: pgmap v164: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-11T03:21:04.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:04 smithi120 ceph-mon[31737]: osdmap e43: 5 total, 5 up, 5 in 2024-09-11T03:21:04.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:04 smithi050 ceph-mon[29717]: pgmap v164: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-11T03:21:04.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:04 smithi050 ceph-mon[29717]: osdmap e43: 5 total, 5 up, 5 in 2024-09-11T03:21:05.623 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:05 smithi120 ceph-mon[31737]: osdmap e44: 5 total, 5 up, 5 in 2024-09-11T03:21:05.623 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:05 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-11T03:21:05.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:05 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2024-09-11T03:21:05.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:05 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2024-09-11T03:21:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:05 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a[29694]: 2024-09-11T03:21:05.155+0000 7fa7ce519640 -1 mon.a@0(leader).osd e44 definitely_dead 0 2024-09-11T03:21:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:05 smithi050 ceph-mon[29717]: osdmap e44: 5 total, 5 up, 5 in 2024-09-11T03:21:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:05 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-11T03:21:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:05 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2024-09-11T03:21:05.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:05 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2024-09-11T03:21:05.695 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:05 smithi165 systemd[1]: Stopping Ceph osd.5 for ff8a8a62-6feb-11ef-bcea-c7b262605968... 2024-09-11T03:21:06.180 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:05 smithi165 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5[41979]: 2024-09-11T03:21:05.695+0000 7f7658417640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.5 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-11T03:21:06.180 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:05 smithi165 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5[41979]: 2024-09-11T03:21:05.695+0000 7f7658417640 -1 osd.5 44 *** Got signal Terminated *** 2024-09-11T03:21:06.180 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:05 smithi165 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5[41979]: 2024-09-11T03:21:05.695+0000 7f7658417640 -1 osd.5 44 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-11T03:21:06.533 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:06 smithi165 podman[45438]: 2024-09-11 03:21:06.2266554 +0000 UTC m=+0.643620817 container died e06e45ec983570f59e8642b574515b03e00bfe2ed2ad801a94f0860832d0f309 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, ceph=True, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4) 2024-09-11T03:21:06.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:06 smithi120 ceph-mon[31737]: pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 103 KiB/s, 0 objects/s recovering 2024-09-11T03:21:06.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:06 smithi120 ceph-mon[31737]: Successfully zapped devices for osd.4 on smithi165 2024-09-11T03:21:06.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:06 smithi120 ceph-mon[31737]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T03:21:06.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:06 smithi120 ceph-mon[31737]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-11T03:21:06.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:06 smithi120 ceph-mon[31737]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T03:21:06.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:06 smithi120 ceph-mon[31737]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-11T03:21:06.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:06 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-11T03:21:06.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:06 smithi120 ceph-mon[31737]: osdmap e45: 5 total, 4 up, 5 in 2024-09-11T03:21:06.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:06 smithi120 ceph-mon[31737]: osd.5 now down 2024-09-11T03:21:06.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:06 smithi120 ceph-mon[31737]: Removing daemon osd.5 from smithi165 -- ports [] 2024-09-11T03:21:06.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:06 smithi050 ceph-mon[29717]: pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 103 KiB/s, 0 objects/s recovering 2024-09-11T03:21:06.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:06 smithi050 ceph-mon[29717]: Successfully zapped devices for osd.4 on smithi165 2024-09-11T03:21:06.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:06 smithi050 ceph-mon[29717]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T03:21:06.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:06 smithi050 ceph-mon[29717]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-11T03:21:06.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:06 smithi050 ceph-mon[29717]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T03:21:06.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:06 smithi050 ceph-mon[29717]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-11T03:21:06.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:06 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-11T03:21:06.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:06 smithi050 ceph-mon[29717]: osdmap e45: 5 total, 4 up, 5 in 2024-09-11T03:21:06.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:06 smithi050 ceph-mon[29717]: osd.5 now down 2024-09-11T03:21:06.629 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:06 smithi050 ceph-mon[29717]: Removing daemon osd.5 from smithi165 -- ports [] 2024-09-11T03:21:06.930 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:06 smithi165 podman[45438]: 2024-09-11 03:21:06.53426992 +0000 UTC m=+0.951235323 container cleanup e06e45ec983570f59e8642b574515b03e00bfe2ed2ad801a94f0860832d0f309 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, ceph=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4) 2024-09-11T03:21:06.930 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:06 smithi165 bash[45438]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5 2024-09-11T03:21:06.930 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:06 smithi165 podman[45458]: 2024-09-11 03:21:06.71843596 +0000 UTC m=+0.493842147 container remove e06e45ec983570f59e8642b574515b03e00bfe2ed2ad801a94f0860832d0f309 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, ceph=True, GIT_CLEAN=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=) 2024-09-11T03:21:07.387 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:07 smithi165 podman[45551]: 2024-09-11 03:21:07.13572078 +0000 UTC m=+0.112482969 container create f12d2e9a6897348923b26d12efc8d7b7ae6fd911618397e20c675fa288882dc5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5-deactivate, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.license=GPLv2, ceph=True, org.label-schema.build-date=20240731, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux ) 2024-09-11T03:21:07.387 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:07 smithi165 podman[45551]: 2024-09-11 03:21:07.038771144 +0000 UTC m=+0.015533347 image pull 589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e 2024-09-11T03:21:07.387 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:07 smithi165 podman[45551]: 2024-09-11 03:21:07.304470188 +0000 UTC m=+0.281232378 container init f12d2e9a6897348923b26d12efc8d7b7ae6fd911618397e20c675fa288882dc5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5-deactivate, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.vendor=CentOS, ceph=True, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-11T03:21:07.388 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:07 smithi165 podman[45551]: 2024-09-11 03:21:07.308945207 +0000 UTC m=+0.285707398 container start f12d2e9a6897348923b26d12efc8d7b7ae6fd911618397e20c675fa288882dc5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5-deactivate, GIT_CLEAN=True, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, ceph=True, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-11T03:21:07.680 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:07 smithi165 podman[45551]: 2024-09-11 03:21:07.387756108 +0000 UTC m=+0.364518304 container attach f12d2e9a6897348923b26d12efc8d7b7ae6fd911618397e20c675fa288882dc5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5-deactivate, ceph=True, io.buildah.version=1.37.2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0) 2024-09-11T03:21:07.810 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:07 smithi165 podman[45551]: 2024-09-11 03:21:07.499138861 +0000 UTC m=+0.475901067 container died f12d2e9a6897348923b26d12efc8d7b7ae6fd911618397e20c675fa288882dc5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5-deactivate, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, CEPH_POINT_RELEASE=, ceph=True, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS) 2024-09-11T03:21:08.054 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:08 smithi165 podman[45594]: 2024-09-11 03:21:08.032284001 +0000 UTC m=+0.525671225 container remove f12d2e9a6897348923b26d12efc8d7b7ae6fd911618397e20c675fa288882dc5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-5-deactivate, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , GIT_CLEAN=True, ceph=True, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD) 2024-09-11T03:21:08.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:08.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:08.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:07 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:08.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:08.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:08.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:07 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:08.429 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:08 smithi165 systemd[1]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.5.service: Deactivated successfully. 2024-09-11T03:21:08.430 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:08 smithi165 systemd[1]: Stopped Ceph osd.5 for ff8a8a62-6feb-11ef-bcea-c7b262605968. 2024-09-11T03:21:08.430 INFO:journalctl@ceph.osd.5.smithi165.stdout:Sep 11 03:21:08 smithi165 systemd[1]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.5.service: Consumed 1.748s CPU time. 2024-09-11T03:21:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:08 smithi120 ceph-mon[31737]: pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 117 KiB/s, 0 objects/s recovering 2024-09-11T03:21:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:08 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2024-09-11T03:21:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:08 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-11T03:21:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:08 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2024-09-11T03:21:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:08 smithi120 ceph-mon[31737]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T03:21:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:08 smithi120 ceph-mon[31737]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-11T03:21:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:08 smithi120 ceph-mon[31737]: Cluster is now healthy 2024-09-11T03:21:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:08 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-11T03:21:09.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:08 smithi120 ceph-mon[31737]: osdmap e46: 4 total, 4 up, 4 in 2024-09-11T03:21:09.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:08 smithi050 ceph-mon[29717]: pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 117 KiB/s, 0 objects/s recovering 2024-09-11T03:21:09.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2024-09-11T03:21:09.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-11T03:21:09.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2024-09-11T03:21:09.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:08 smithi050 ceph-mon[29717]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T03:21:09.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:08 smithi050 ceph-mon[29717]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-11T03:21:09.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:08 smithi050 ceph-mon[29717]: Cluster is now healthy 2024-09-11T03:21:09.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:08 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-11T03:21:09.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:08 smithi050 ceph-mon[29717]: osdmap e46: 4 total, 4 up, 4 in 2024-09-11T03:21:10.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:09 smithi120 ceph-mon[31737]: Removing key for osd.5 2024-09-11T03:21:10.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:09 smithi120 ceph-mon[31737]: Successfully removed osd.5 on smithi165 2024-09-11T03:21:10.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:09 smithi120 ceph-mon[31737]: Successfully purged osd.5 on smithi165 2024-09-11T03:21:10.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:09 smithi120 ceph-mon[31737]: Zapping devices for osd.5 on smithi165 2024-09-11T03:21:10.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:09 smithi050 ceph-mon[29717]: Removing key for osd.5 2024-09-11T03:21:10.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:09 smithi050 ceph-mon[29717]: Successfully removed osd.5 on smithi165 2024-09-11T03:21:10.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:09 smithi050 ceph-mon[29717]: Successfully purged osd.5 on smithi165 2024-09-11T03:21:10.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:09 smithi050 ceph-mon[29717]: Zapping devices for osd.5 on smithi165 2024-09-11T03:21:10.744 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch ps --hostname smithi165 2024-09-11T03:21:11.049 INFO:teuthology.orchestra.run.smithi050.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID 2024-09-11T03:21:11.049 INFO:teuthology.orchestra.run.smithi050.stderr:agent.smithi165 smithi165 running 11s ago 3m - - ' 2024-09-11T03:21:11.049 INFO:teuthology.orchestra.run.smithi050.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID 2024-09-11T03:21:11.049 INFO:teuthology.orchestra.run.smithi050.stderr:agent.smithi165 smithi165 running 11s ago 3m - - ' '!=' 'No daemons reported' ']' 2024-09-11T03:21:11.049 INFO:teuthology.orchestra.run.smithi050.stderr:+ sleep 15 2024-09-11T03:21:11.049 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:10 smithi050 ceph-mon[29717]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 97 KiB/s, 0 objects/s recovering 2024-09-11T03:21:11.106 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:10 smithi120 ceph-mon[31737]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 97 KiB/s, 0 objects/s recovering 2024-09-11T03:21:12.373 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:12 smithi120 ceph-mon[31737]: from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:21:12.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:12 smithi120 ceph-mon[31737]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 83 KiB/s, 0 objects/s recovering 2024-09-11T03:21:12.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:12 smithi120 ceph-mon[31737]: Successfully zapped devices for osd.5 on smithi165 2024-09-11T03:21:12.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:12 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:12.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:12 smithi120 ceph-mon[31737]: Removing daemon agent.smithi165 from smithi165 -- ports [] 2024-09-11T03:21:12.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:12 smithi120 ceph-mon[31737]: Removing key for client.agent.smithi165 2024-09-11T03:21:12.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:12 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "client.agent.smithi165"} : dispatch 2024-09-11T03:21:12.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:12 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi165"}]': finished 2024-09-11T03:21:12.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:12 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:12.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:12 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:12.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:12 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:21:12.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:12 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:12.375 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:12 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:12.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:12 smithi050 ceph-mon[29717]: from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:21:12.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:12 smithi050 ceph-mon[29717]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 83 KiB/s, 0 objects/s recovering 2024-09-11T03:21:12.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:12 smithi050 ceph-mon[29717]: Successfully zapped devices for osd.5 on smithi165 2024-09-11T03:21:12.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:12.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:12 smithi050 ceph-mon[29717]: Removing daemon agent.smithi165 from smithi165 -- ports [] 2024-09-11T03:21:12.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:12 smithi050 ceph-mon[29717]: Removing key for client.agent.smithi165 2024-09-11T03:21:12.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "client.agent.smithi165"} : dispatch 2024-09-11T03:21:12.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi165"}]': finished 2024-09-11T03:21:12.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:12.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:12.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:21:12.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:12.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:12 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:13.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:13 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:13.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:13 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:13.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:13 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:13.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:13 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:14.625 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:14 smithi120 ceph-mon[31737]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:14.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:14 smithi050 ceph-mon[29717]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:15.623 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:15 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:15 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:15 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:15 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:15 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:15 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:15 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:15.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:15 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:21:15.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:15 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:15 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:15 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.627 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:15.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:21:15.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:15.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:15 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:16.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:16 smithi050 ceph-mon[29717]: pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:16.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:16 smithi050 ceph-mon[29717]: Detected new or changed devices on smithi165 2024-09-11T03:21:16.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:16 smithi050 ceph-mon[29717]: Removing smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:21:16.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:16 smithi050 ceph-mon[29717]: Removing smithi165:/etc/ceph/ceph.client.admin.keyring 2024-09-11T03:21:16.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:16 smithi050 ceph-mon[29717]: Removing smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T03:21:16.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:16 smithi050 ceph-mon[29717]: Reconfiguring mon.a (monmap changed)... 2024-09-11T03:21:16.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:16 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:21:16.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:16 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-11T03:21:16.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:16 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:16.379 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:16 smithi050 ceph-mon[29717]: Reconfiguring daemon mon.a on smithi050 2024-09-11T03:21:16.623 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:16 smithi120 ceph-mon[31737]: pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:16.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:16 smithi120 ceph-mon[31737]: Detected new or changed devices on smithi165 2024-09-11T03:21:16.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:16 smithi120 ceph-mon[31737]: Removing smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T03:21:16.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:16 smithi120 ceph-mon[31737]: Removing smithi165:/etc/ceph/ceph.client.admin.keyring 2024-09-11T03:21:16.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:16 smithi120 ceph-mon[31737]: Removing smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T03:21:16.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:16 smithi120 ceph-mon[31737]: Reconfiguring mon.a (monmap changed)... 2024-09-11T03:21:16.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:16 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:21:16.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:16 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-11T03:21:16.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:16 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:16.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:16 smithi120 ceph-mon[31737]: Reconfiguring daemon mon.a on smithi050 2024-09-11T03:21:18.283 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:17 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:18.283 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:17 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:18.283 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:17 smithi050 ceph-mon[29717]: Reconfiguring mgr.a (monmap changed)... 2024-09-11T03:21:18.283 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:17 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-11T03:21:18.284 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:17 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-11T03:21:18.284 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:17 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:18.284 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:17 smithi050 ceph-mon[29717]: Reconfiguring daemon mgr.a on smithi050 2024-09-11T03:21:18.284 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:17 smithi050 ceph-mon[29717]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:18.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:17 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:18.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:17 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:18.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:17 smithi120 ceph-mon[31737]: Reconfiguring mgr.a (monmap changed)... 2024-09-11T03:21:18.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:17 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-11T03:21:18.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:17 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-11T03:21:18.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:17 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:18.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:17 smithi120 ceph-mon[31737]: Reconfiguring daemon mgr.a on smithi050 2024-09-11T03:21:18.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:17 smithi120 ceph-mon[31737]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:19.442 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:19 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:19.442 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:19 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:19.442 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:19 smithi050 ceph-mon[29717]: Reconfiguring osd.0 (monmap changed)... 2024-09-11T03:21:19.442 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:19 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-11T03:21:19.442 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:19 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:19.442 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:19 smithi050 ceph-mon[29717]: Reconfiguring daemon osd.0 on smithi050 2024-09-11T03:21:19.623 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:19 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:19.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:19 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:19.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:19 smithi120 ceph-mon[31737]: Reconfiguring osd.0 (monmap changed)... 2024-09-11T03:21:19.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:19 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-11T03:21:19.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:19 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:19.624 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:19 smithi120 ceph-mon[31737]: Reconfiguring daemon osd.0 on smithi050 2024-09-11T03:21:20.623 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:20 smithi120 ceph-mon[31737]: pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:20.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:20 smithi050 ceph-mon[29717]: pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:21.861 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:21 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:21.861 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:21 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:21.861 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:21 smithi050 ceph-mon[29717]: Reconfiguring osd.1 (monmap changed)... 2024-09-11T03:21:21.861 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:21 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-11T03:21:21.861 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:21 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:21.862 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:21 smithi050 ceph-mon[29717]: Reconfiguring daemon osd.1 on smithi050 2024-09-11T03:21:22.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:21 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:22.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:21 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:22.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:21 smithi120 ceph-mon[31737]: Reconfiguring osd.1 (monmap changed)... 2024-09-11T03:21:22.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:21 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-11T03:21:22.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:21 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:22.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:21 smithi120 ceph-mon[31737]: Reconfiguring daemon osd.1 on smithi050 2024-09-11T03:21:23.059 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:22 smithi050 ceph-mon[29717]: pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:23.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:22 smithi120 ceph-mon[31737]: pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:24.720 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:24 smithi120 ceph-mon[31737]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:24.720 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:24 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:24.720 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:24 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:24.720 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:24 smithi120 ceph-mon[31737]: Reconfiguring mon.b (monmap changed)... 2024-09-11T03:21:24.720 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:24 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:21:24.720 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:24 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-11T03:21:24.721 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:24 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:24.721 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:24 smithi120 ceph-mon[31737]: Reconfiguring daemon mon.b on smithi120 2024-09-11T03:21:24.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:24 smithi050 ceph-mon[29717]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:24.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:24.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:24.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:24 smithi050 ceph-mon[29717]: Reconfiguring mon.b (monmap changed)... 2024-09-11T03:21:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-11T03:21:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-11T03:21:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:24 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:24.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:24 smithi050 ceph-mon[29717]: Reconfiguring daemon mon.b on smithi120 2024-09-11T03:21:26.051 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch ps --hostname smithi165 2024-09-11T03:21:26.051 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:26.052 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:26.052 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:25 smithi050 ceph-mon[29717]: Reconfiguring mgr.b (monmap changed)... 2024-09-11T03:21:26.052 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-11T03:21:26.052 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-11T03:21:26.052 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:25 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:26.052 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:25 smithi050 ceph-mon[29717]: Reconfiguring daemon mgr.b on smithi120 2024-09-11T03:21:26.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:26.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:26.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:25 smithi120 ceph-mon[31737]: Reconfiguring mgr.b (monmap changed)... 2024-09-11T03:21:26.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-11T03:21:26.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-11T03:21:26.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:25 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:26.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:25 smithi120 ceph-mon[31737]: Reconfiguring daemon mgr.b on smithi120 2024-09-11T03:21:26.356 INFO:teuthology.orchestra.run.smithi050.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-11T03:21:26.356 INFO:teuthology.orchestra.run.smithi050.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-11T03:21:26.356 INFO:teuthology.orchestra.run.smithi050.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-11T03:21:26.627 INFO:teuthology.orchestra.run.smithi050.stderr:17 2024-09-11T03:21:26.638 INFO:teuthology.orchestra.run.smithi050.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-11T03:21:26.651 INFO:teuthology.orchestra.run.smithi050.stderr:++ cat crushmap.txt 2024-09-11T03:21:26.652 INFO:teuthology.orchestra.run.smithi050.stderr:+ CRUSH_MAP='# begin crush map 2024-09-11T03:21:26.652 INFO:teuthology.orchestra.run.smithi050.stderr:tunable choose_local_tries 0 2024-09-11T03:21:26.652 INFO:teuthology.orchestra.run.smithi050.stderr:tunable choose_local_fallback_tries 0 2024-09-11T03:21:26.653 INFO:teuthology.orchestra.run.smithi050.stderr:tunable choose_total_tries 50 2024-09-11T03:21:26.653 INFO:teuthology.orchestra.run.smithi050.stderr:tunable chooseleaf_descend_once 1 2024-09-11T03:21:26.653 INFO:teuthology.orchestra.run.smithi050.stderr:tunable chooseleaf_vary_r 1 2024-09-11T03:21:26.653 INFO:teuthology.orchestra.run.smithi050.stderr:tunable chooseleaf_stable 1 2024-09-11T03:21:26.653 INFO:teuthology.orchestra.run.smithi050.stderr:tunable straw_calc_version 1 2024-09-11T03:21:26.653 INFO:teuthology.orchestra.run.smithi050.stderr:tunable allowed_bucket_algs 54 2024-09-11T03:21:26.653 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-11T03:21:26.653 INFO:teuthology.orchestra.run.smithi050.stderr:# devices 2024-09-11T03:21:26.653 INFO:teuthology.orchestra.run.smithi050.stderr:device 0 osd.0 class ssd 2024-09-11T03:21:26.653 INFO:teuthology.orchestra.run.smithi050.stderr:device 1 osd.1 class ssd 2024-09-11T03:21:26.653 INFO:teuthology.orchestra.run.smithi050.stderr:device 2 osd.2 class ssd 2024-09-11T03:21:26.653 INFO:teuthology.orchestra.run.smithi050.stderr:device 3 osd.3 class ssd 2024-09-11T03:21:26.653 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr:# types 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr:type 0 osd 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr:type 1 host 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr:type 2 chassis 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr:type 3 rack 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr:type 4 row 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr:type 5 pdu 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr:type 6 pod 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr:type 7 room 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr:type 8 datacenter 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr:type 9 zone 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr:type 10 region 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr:type 11 root 2024-09-11T03:21:26.654 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr:# buckets 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr:host smithi050 { 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr: id -3 # do not change unnecessarily 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr: id -4 class ssd # do not change unnecessarily 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.17459 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.0 weight 0.08730 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.1 weight 0.08730 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr:host smithi120 { 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr: id -5 # do not change unnecessarily 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr: id -6 class ssd # do not change unnecessarily 2024-09-11T03:21:26.655 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.17459 2024-09-11T03:21:26.656 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-09-11T03:21:26.656 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-09-11T03:21:26.656 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.2 weight 0.08730 2024-09-11T03:21:26.656 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.3 weight 0.08730 2024-09-11T03:21:26.656 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-09-11T03:21:26.656 INFO:teuthology.orchestra.run.smithi050.stderr:host smithi165 { 2024-09-11T03:21:26.656 INFO:teuthology.orchestra.run.smithi050.stderr: id -7 # do not change unnecessarily 2024-09-11T03:21:26.656 INFO:teuthology.orchestra.run.smithi050.stderr: id -8 class ssd # do not change unnecessarily 2024-09-11T03:21:26.656 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.00000 2024-09-11T03:21:26.656 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-09-11T03:21:26.656 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-09-11T03:21:26.656 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr:root default { 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr: id -1 # do not change unnecessarily 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr: id -2 class ssd # do not change unnecessarily 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.34918 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr: item smithi050 weight 0.17459 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr: item smithi120 weight 0.17459 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr: item smithi165 weight 0.00000 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr:# rules 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr:rule replicated_rule { 2024-09-11T03:21:26.657 INFO:teuthology.orchestra.run.smithi050.stderr: id 0 2024-09-11T03:21:26.658 INFO:teuthology.orchestra.run.smithi050.stderr: type replicated 2024-09-11T03:21:26.658 INFO:teuthology.orchestra.run.smithi050.stderr: step take default 2024-09-11T03:21:26.658 INFO:teuthology.orchestra.run.smithi050.stderr: step choose firstn 0 type osd 2024-09-11T03:21:26.658 INFO:teuthology.orchestra.run.smithi050.stderr: step emit 2024-09-11T03:21:26.658 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-09-11T03:21:26.658 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-11T03:21:26.658 INFO:teuthology.orchestra.run.smithi050.stderr:# end crush map' 2024-09-11T03:21:26.658 INFO:teuthology.orchestra.run.smithi050.stderr:+ grep -q smithi165 2024-09-11T03:21:26.658 INFO:teuthology.orchestra.run.smithi050.stderr:+ ceph orch host rm smithi165 --rm-crush-entry 2024-09-11T03:21:26.847 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:26 smithi120 ceph-mon[31737]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:26.847 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:26.847 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:26.847 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-11T03:21:26.848 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:26 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:26.848 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:26 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/1068136478' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-11T03:21:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:26 smithi050 ceph-mon[29717]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:26.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:26.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-11T03:21:26.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:26 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:26.879 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:26 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/1068136478' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-11T03:21:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:27 smithi120 ceph-mon[31737]: Reconfiguring osd.2 (monmap changed)... 2024-09-11T03:21:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:27 smithi120 ceph-mon[31737]: Reconfiguring daemon osd.2 on smithi120 2024-09-11T03:21:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:27 smithi120 ceph-mon[31737]: from='client.14548 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:21:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "smithi165"} : dispatch 2024-09-11T03:21:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:27.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-11T03:21:27.875 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:27 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:27.949 INFO:teuthology.orchestra.run.smithi050.stdout:Removed host 'smithi165' 2024-09-11T03:21:27.962 INFO:teuthology.orchestra.run.smithi050.stderr:+ sleep 30 2024-09-11T03:21:28.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:27 smithi050 ceph-mon[29717]: Reconfiguring osd.2 (monmap changed)... 2024-09-11T03:21:28.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:27 smithi050 ceph-mon[29717]: Reconfiguring daemon osd.2 on smithi120 2024-09-11T03:21:28.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:27 smithi050 ceph-mon[29717]: from='client.14548 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:21:28.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:28.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:28.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:28.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "smithi165"} : dispatch 2024-09-11T03:21:28.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:28.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:28.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-11T03:21:28.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:27 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:29.058 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:28 smithi120 ceph-mon[31737]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi165", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:21:29.058 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:28 smithi120 ceph-mon[31737]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:29.058 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:28 smithi120 ceph-mon[31737]: Reconfiguring osd.3 (monmap changed)... 2024-09-11T03:21:29.058 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:28 smithi120 ceph-mon[31737]: Reconfiguring daemon osd.3 on smithi120 2024-09-11T03:21:29.059 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:28 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi165"}]': finished 2024-09-11T03:21:29.059 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:28 smithi120 ceph-mon[31737]: osdmap e47: 4 total, 4 up, 4 in 2024-09-11T03:21:29.059 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:28 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:29.059 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:28 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.smithi165"} : dispatch 2024-09-11T03:21:29.059 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:28 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi165"}]': finished 2024-09-11T03:21:29.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:28 smithi050 ceph-mon[29717]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi165", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T03:21:29.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:28 smithi050 ceph-mon[29717]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:29.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:28 smithi050 ceph-mon[29717]: Reconfiguring osd.3 (monmap changed)... 2024-09-11T03:21:29.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:28 smithi050 ceph-mon[29717]: Reconfiguring daemon osd.3 on smithi120 2024-09-11T03:21:29.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:28 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi165"}]': finished 2024-09-11T03:21:29.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:28 smithi050 ceph-mon[29717]: osdmap e47: 4 total, 4 up, 4 in 2024-09-11T03:21:29.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:28 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:29.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:28 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.smithi165"} : dispatch 2024-09-11T03:21:29.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:28 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi165"}]': finished 2024-09-11T03:21:30.039 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:29 smithi120 ceph-mon[31737]: Removed host smithi165 2024-09-11T03:21:30.040 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:29 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:30.040 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:29 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:30.040 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:29 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:21:30.040 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:29 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:30.040 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:29 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:21:30.041 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:29 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:30.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:29 smithi050 ceph-mon[29717]: Removed host smithi165 2024-09-11T03:21:30.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:29 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:30.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:29 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:30.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:29 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-11T03:21:30.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:29 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-11T03:21:30.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:29 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-11T03:21:30.129 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:29 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:30.999 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:30 smithi120 ceph-mon[31737]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:31.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:30 smithi050 ceph-mon[29717]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:33.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:32 smithi120 ceph-mon[31737]: pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:33.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:32 smithi050 ceph-mon[29717]: pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:35.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:34 smithi120 ceph-mon[31737]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:35.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:34 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:35.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:34 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:35.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:34 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:35.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:34 smithi050 ceph-mon[29717]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:35.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:35.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:35.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:34 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:37.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:36 smithi120 ceph-mon[31737]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:37.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:36 smithi050 ceph-mon[29717]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:38.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:38 smithi050 ceph-mon[29717]: pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:39.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:38 smithi120 ceph-mon[31737]: pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:41.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:40 smithi120 ceph-mon[31737]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:41.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:40 smithi050 ceph-mon[29717]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:43.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:42 smithi120 ceph-mon[31737]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:43.127 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:42 smithi050 ceph-mon[29717]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:45.123 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:44 smithi120 ceph-mon[31737]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:45.127 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:44 smithi050 ceph-mon[29717]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:47.124 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:46 smithi120 ceph-mon[31737]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:47.128 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:46 smithi050 ceph-mon[29717]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:48.373 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:48 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:48.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:48 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:48.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:48 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:48.374 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:48 smithi120 ceph-mon[31737]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:48.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:48 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:48.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:48 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:48.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:48 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:48.378 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:48 smithi050 ceph-mon[29717]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:50.451 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:50 smithi120 ceph-mon[31737]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:50.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:50 smithi050 ceph-mon[29717]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:52.568 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:52 smithi120 ceph-mon[31737]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:52.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:52 smithi050 ceph-mon[29717]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:54.581 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:54 smithi050 ceph-mon[29717]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:54.623 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:54 smithi120 ceph-mon[31737]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:55.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:55.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:55.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:55 smithi120 ceph-mon[31737]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:55.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:55.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:55.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:55 smithi050 ceph-mon[29717]: from='mgr.14150 172.21.15.50:0/3758504399' entity='mgr.a' 2024-09-11T03:21:56.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:56 smithi120 ceph-mon[31737]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:56.877 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:56 smithi050 ceph-mon[29717]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:57.966 INFO:teuthology.orchestra.run.smithi050.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-11T03:21:58.256 INFO:teuthology.orchestra.run.smithi050.stderr:18 2024-09-11T03:21:58.266 INFO:teuthology.orchestra.run.smithi050.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-11T03:21:58.278 INFO:teuthology.orchestra.run.smithi050.stderr:++ cat crushmap.txt 2024-09-11T03:21:58.279 INFO:teuthology.orchestra.run.smithi050.stderr:+ CRUSH_MAP='# begin crush map 2024-09-11T03:21:58.279 INFO:teuthology.orchestra.run.smithi050.stderr:tunable choose_local_tries 0 2024-09-11T03:21:58.279 INFO:teuthology.orchestra.run.smithi050.stderr:tunable choose_local_fallback_tries 0 2024-09-11T03:21:58.280 INFO:teuthology.orchestra.run.smithi050.stderr:tunable choose_total_tries 50 2024-09-11T03:21:58.280 INFO:teuthology.orchestra.run.smithi050.stderr:tunable chooseleaf_descend_once 1 2024-09-11T03:21:58.280 INFO:teuthology.orchestra.run.smithi050.stderr:tunable chooseleaf_vary_r 1 2024-09-11T03:21:58.280 INFO:teuthology.orchestra.run.smithi050.stderr:tunable chooseleaf_stable 1 2024-09-11T03:21:58.280 INFO:teuthology.orchestra.run.smithi050.stderr:tunable straw_calc_version 1 2024-09-11T03:21:58.280 INFO:teuthology.orchestra.run.smithi050.stderr:tunable allowed_bucket_algs 54 2024-09-11T03:21:58.280 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-11T03:21:58.280 INFO:teuthology.orchestra.run.smithi050.stderr:# devices 2024-09-11T03:21:58.280 INFO:teuthology.orchestra.run.smithi050.stderr:device 0 osd.0 class ssd 2024-09-11T03:21:58.280 INFO:teuthology.orchestra.run.smithi050.stderr:device 1 osd.1 class ssd 2024-09-11T03:21:58.280 INFO:teuthology.orchestra.run.smithi050.stderr:device 2 osd.2 class ssd 2024-09-11T03:21:58.280 INFO:teuthology.orchestra.run.smithi050.stderr:device 3 osd.3 class ssd 2024-09-11T03:21:58.280 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr:# types 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr:type 0 osd 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr:type 1 host 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr:type 2 chassis 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr:type 3 rack 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr:type 4 row 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr:type 5 pdu 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr:type 6 pod 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr:type 7 room 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr:type 8 datacenter 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr:type 9 zone 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr:type 10 region 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr:type 11 root 2024-09-11T03:21:58.281 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-11T03:21:58.282 INFO:teuthology.orchestra.run.smithi050.stderr:# buckets 2024-09-11T03:21:58.282 INFO:teuthology.orchestra.run.smithi050.stderr:host smithi050 { 2024-09-11T03:21:58.282 INFO:teuthology.orchestra.run.smithi050.stderr: id -3 # do not change unnecessarily 2024-09-11T03:21:58.282 INFO:teuthology.orchestra.run.smithi050.stderr: id -4 class ssd # do not change unnecessarily 2024-09-11T03:21:58.282 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.17459 2024-09-11T03:21:58.282 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-09-11T03:21:58.282 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-09-11T03:21:58.282 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.0 weight 0.08730 2024-09-11T03:21:58.282 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.1 weight 0.08730 2024-09-11T03:21:58.282 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-09-11T03:21:58.282 INFO:teuthology.orchestra.run.smithi050.stderr:host smithi120 { 2024-09-11T03:21:58.282 INFO:teuthology.orchestra.run.smithi050.stderr: id -5 # do not change unnecessarily 2024-09-11T03:21:58.282 INFO:teuthology.orchestra.run.smithi050.stderr: id -6 class ssd # do not change unnecessarily 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.17459 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.2 weight 0.08730 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.3 weight 0.08730 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr:root default { 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr: id -1 # do not change unnecessarily 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr: id -2 class ssd # do not change unnecessarily 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.34918 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr: item smithi050 weight 0.17459 2024-09-11T03:21:58.283 INFO:teuthology.orchestra.run.smithi050.stderr: item smithi120 weight 0.17459 2024-09-11T03:21:58.284 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-09-11T03:21:58.284 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-11T03:21:58.284 INFO:teuthology.orchestra.run.smithi050.stderr:# rules 2024-09-11T03:21:58.284 INFO:teuthology.orchestra.run.smithi050.stderr:rule replicated_rule { 2024-09-11T03:21:58.284 INFO:teuthology.orchestra.run.smithi050.stderr: id 0 2024-09-11T03:21:58.284 INFO:teuthology.orchestra.run.smithi050.stderr: type replicated 2024-09-11T03:21:58.284 INFO:teuthology.orchestra.run.smithi050.stderr: step take default 2024-09-11T03:21:58.284 INFO:teuthology.orchestra.run.smithi050.stderr: step choose firstn 0 type osd 2024-09-11T03:21:58.284 INFO:teuthology.orchestra.run.smithi050.stderr: step emit 2024-09-11T03:21:58.284 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-09-11T03:21:58.284 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-11T03:21:58.284 INFO:teuthology.orchestra.run.smithi050.stderr:# end crush map' 2024-09-11T03:21:58.284 INFO:teuthology.orchestra.run.smithi050.stderr:+ grep -q smithi165 2024-09-11T03:21:58.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:58 smithi120 ceph-mon[31737]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:58.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:21:58 smithi120 ceph-mon[31737]: from='client.? 172.21.15.50:0/3054939496' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-11T03:21:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:58 smithi050 ceph-mon[29717]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-11T03:21:58.878 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:58 smithi050 ceph-mon[29717]: from='client.? 172.21.15.50:0/3054939496' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-11T03:21:59.716 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-11T03:21:59.727 INFO:tasks.cephadm:Teardown begin 2024-09-11T03:21:59.727 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T03:21:59.760 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T03:21:59.795 DEBUG:teuthology.orchestra.run.smithi165:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T03:21:59.829 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-11T03:21:59.829 DEBUG:teuthology.orchestra.run.smithi050:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-11T03:21:59.847 DEBUG:teuthology.orchestra.run.smithi120:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-11T03:21:59.864 DEBUG:teuthology.orchestra.run.smithi165:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-11T03:21:59.886 INFO:tasks.cephadm:Stopping all daemons... 2024-09-11T03:21:59.887 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-11T03:21:59.887 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.a 2024-09-11T03:21:59.943 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:21:59 smithi050 systemd[1]: Stopping Ceph mon.a for ff8a8a62-6feb-11ef-bcea-c7b262605968... 2024-09-11T03:22:00.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:22:00 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a[29694]: 2024-09-11T03:22:00.315+0000 7fa7d3d24640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-11T03:22:00.628 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:22:00 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a[29694]: 2024-09-11T03:22:00.315+0000 7fa7d3d24640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-11T03:22:00.906 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:22:00 smithi050 podman[53731]: 2024-09-11 03:22:00.637481803 +0000 UTC m=+0.454162864 container died 92c594575e43c8946e7c7f5e5f17f7f1c3b785ec9ee7ca87baee5d67950b91a5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a, io.buildah.version=1.37.2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS) 2024-09-11T03:22:01.182 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:22:01 smithi050 podman[53731]: 2024-09-11 03:22:01.063781894 +0000 UTC m=+0.880462957 container cleanup 92c594575e43c8946e7c7f5e5f17f7f1c3b785ec9ee7ca87baee5d67950b91a5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a, GIT_CLEAN=True, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS) 2024-09-11T03:22:01.183 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:22:01 smithi050 bash[53731]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a 2024-09-11T03:22:01.814 INFO:journalctl@ceph.mon.a.smithi050.stdout:Sep 11 03:22:01 smithi050 podman[53784]: 2024-09-11 03:22:01.717787386 +0000 UTC m=+1.255846488 container remove 92c594575e43c8946e7c7f5e5f17f7f1c3b785ec9ee7ca87baee5d67950b91a5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-a, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS) 2024-09-11T03:22:01.833 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.a.service' 2024-09-11T03:22:01.880 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T03:22:01.880 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-11T03:22:01.880 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-11T03:22:01.880 DEBUG:teuthology.orchestra.run.smithi120:> sudo systemctl stop ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.b 2024-09-11T03:22:02.174 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:22:01 smithi120 systemd[1]: Stopping Ceph mon.b for ff8a8a62-6feb-11ef-bcea-c7b262605968... 2024-09-11T03:22:02.598 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:22:02 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-b[31714]: 2024-09-11T03:22:02.173+0000 7f005189a640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.b -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-11T03:22:02.598 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:22:02 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-b[31714]: 2024-09-11T03:22:02.173+0000 7f005189a640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-11T03:22:02.598 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:22:02 smithi120 podman[45661]: 2024-09-11 03:22:02.347863554 +0000 UTC m=+0.280784591 container died c380cace390c10497dd4776548f782ced5f78b0709c2cb59132dea37c1d6ba36 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-b, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, ceph=True, org.label-schema.build-date=20240731) 2024-09-11T03:22:02.873 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:22:02 smithi120 podman[45661]: 2024-09-11 03:22:02.697328126 +0000 UTC m=+0.630249173 container cleanup c380cace390c10497dd4776548f782ced5f78b0709c2cb59132dea37c1d6ba36 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-b, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2) 2024-09-11T03:22:02.874 INFO:journalctl@ceph.mon.b.smithi120.stdout:Sep 11 03:22:02 smithi120 bash[45661]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mon-b 2024-09-11T03:22:03.130 DEBUG:teuthology.orchestra.run.smithi120:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.b.service' 2024-09-11T03:22:03.174 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T03:22:03.174 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-11T03:22:03.175 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-11T03:22:03.175 DEBUG:teuthology.orchestra.run.smithi165:> sudo systemctl stop ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.c 2024-09-11T03:22:03.220 DEBUG:teuthology.orchestra.run.smithi165:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mon.c.service' 2024-09-11T03:22:03.269 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T03:22:03.269 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-11T03:22:03.269 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-11T03:22:03.269 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mgr.a 2024-09-11T03:22:03.597 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:22:03 smithi050 systemd[1]: Stopping Ceph mgr.a for ff8a8a62-6feb-11ef-bcea-c7b262605968... 2024-09-11T03:22:03.878 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:22:03 smithi050 podman[53923]: 2024-09-11 03:22:03.603923177 +0000 UTC m=+0.124682255 container died a1cc605444d156219be384072719eb92ff7df59e8f28e45a76fb9222c349a134 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux ) 2024-09-11T03:22:04.213 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:22:03 smithi050 podman[53923]: 2024-09-11 03:22:03.979285778 +0000 UTC m=+0.500044849 container cleanup a1cc605444d156219be384072719eb92ff7df59e8f28e45a76fb9222c349a134 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8f219c476cb4f26fc5719c661c0323719a45cb30, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True) 2024-09-11T03:22:04.213 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Sep 11 03:22:03 smithi050 bash[53923]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-a 2024-09-11T03:22:04.362 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mgr.a.service' 2024-09-11T03:22:04.400 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T03:22:04.400 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-11T03:22:04.400 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-11T03:22:04.401 DEBUG:teuthology.orchestra.run.smithi120:> sudo systemctl stop ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mgr.b 2024-09-11T03:22:04.716 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:22:04 smithi120 systemd[1]: Stopping Ceph mgr.b for ff8a8a62-6feb-11ef-bcea-c7b262605968... 2024-09-11T03:22:04.968 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:22:04 smithi120 podman[45789]: 2024-09-11 03:22:04.716795279 +0000 UTC m=+0.120911368 container died c2f51c92f6d2d44f7ee96661d6afb6dc77426f476c3add08caa6aef4f119afb7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-b, GIT_BRANCH=HEAD, ceph=True, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731) 2024-09-11T03:22:05.328 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:22:05 smithi120 podman[45789]: 2024-09-11 03:22:05.135557838 +0000 UTC m=+0.539673931 container cleanup c2f51c92f6d2d44f7ee96661d6afb6dc77426f476c3add08caa6aef4f119afb7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-b, org.label-schema.vendor=CentOS, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, GIT_BRANCH=HEAD, ceph=True, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, io.buildah.version=1.37.2) 2024-09-11T03:22:05.328 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:22:05 smithi120 bash[45789]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-b 2024-09-11T03:22:05.557 DEBUG:teuthology.orchestra.run.smithi120:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mgr.b.service' 2024-09-11T03:22:05.578 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:22:05 smithi120 podman[45808]: 2024-09-11 03:22:05.328759374 +0000 UTC m=+0.607770103 container remove c2f51c92f6d2d44f7ee96661d6afb6dc77426f476c3add08caa6aef4f119afb7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-mgr-b, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=) 2024-09-11T03:22:05.578 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:22:05 smithi120 systemd[1]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mgr.b.service: Main process exited, code=exited, status=143/n/a 2024-09-11T03:22:05.579 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:22:05 smithi120 systemd[1]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mgr.b.service: Failed with result 'exit-code'. 2024-09-11T03:22:05.579 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:22:05 smithi120 systemd[1]: Stopped Ceph mgr.b for ff8a8a62-6feb-11ef-bcea-c7b262605968. 2024-09-11T03:22:05.579 INFO:journalctl@ceph.mgr.b.smithi120.stdout:Sep 11 03:22:05 smithi120 systemd[1]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@mgr.b.service: Consumed 6.435s CPU time. 2024-09-11T03:22:05.590 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T03:22:05.591 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-11T03:22:05.591 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-11T03:22:05.591 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.0 2024-09-11T03:22:05.878 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:05 smithi050 systemd[1]: Stopping Ceph osd.0 for ff8a8a62-6feb-11ef-bcea-c7b262605968... 2024-09-11T03:22:06.378 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:05 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0[41081]: 2024-09-11T03:22:05.910+0000 7f3505282640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.0 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-11T03:22:06.378 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:05 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0[41081]: 2024-09-11T03:22:05.910+0000 7f3505282640 -1 osd.0 47 *** Got signal Terminated *** 2024-09-11T03:22:06.378 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:05 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0[41081]: 2024-09-11T03:22:05.910+0000 7f3505282640 -1 osd.0 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-11T03:22:11.628 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:11 smithi050 podman[54054]: 2024-09-11 03:22:11.340353743 +0000 UTC m=+5.542162171 container died 0a0b4611829323c4405866bde4efc8a3404448ff0864ccb78a33e32c44570f82 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, ceph=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4) 2024-09-11T03:22:11.941 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:11 smithi050 podman[54054]: 2024-09-11 03:22:11.791094342 +0000 UTC m=+5.992902754 container cleanup 0a0b4611829323c4405866bde4efc8a3404448ff0864ccb78a33e32c44570f82 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0, org.label-schema.build-date=20240731, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.license=GPLv2, ceph=True, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-11T03:22:11.941 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:11 smithi050 bash[54054]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0 2024-09-11T03:22:12.356 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:11 smithi050 podman[54075]: 2024-09-11 03:22:11.942340194 +0000 UTC m=+0.590585436 container remove 0a0b4611829323c4405866bde4efc8a3404448ff0864ccb78a33e32c44570f82 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-11T03:22:12.620 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:12 smithi050 podman[54170]: 2024-09-11 03:22:12.260081546 +0000 UTC m=+0.016332237 image pull 589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e 2024-09-11T03:22:12.620 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:12 smithi050 podman[54170]: 2024-09-11 03:22:12.393332644 +0000 UTC m=+0.149583316 container create 52fccfc0378d2b1d00d33a96b99d4d1c6587f5524ac65d7b97e4e878c48203a0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0-deactivate, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, ceph=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-11T03:22:12.620 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:12 smithi050 podman[54170]: 2024-09-11 03:22:12.620602101 +0000 UTC m=+0.376852782 container init 52fccfc0378d2b1d00d33a96b99d4d1c6587f5524ac65d7b97e4e878c48203a0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0-deactivate, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, ceph=True, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-11T03:22:12.878 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:12 smithi050 podman[54170]: 2024-09-11 03:22:12.625966204 +0000 UTC m=+0.382216879 container start 52fccfc0378d2b1d00d33a96b99d4d1c6587f5524ac65d7b97e4e878c48203a0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0-deactivate, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, ceph=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-11T03:22:12.878 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:12 smithi050 podman[54170]: 2024-09-11 03:22:12.703777351 +0000 UTC m=+0.460028025 container attach 52fccfc0378d2b1d00d33a96b99d4d1c6587f5524ac65d7b97e4e878c48203a0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0-deactivate, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_CLEAN=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, io.buildah.version=1.37.2) 2024-09-11T03:22:12.878 INFO:journalctl@ceph.osd.0.smithi050.stdout:Sep 11 03:22:12 smithi050 podman[54170]: 2024-09-11 03:22:12.841772952 +0000 UTC m=+0.598023625 container died 52fccfc0378d2b1d00d33a96b99d4d1c6587f5524ac65d7b97e4e878c48203a0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-0-deactivate, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-11T03:22:13.608 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.0.service' 2024-09-11T03:22:13.655 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T03:22:13.655 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-11T03:22:13.655 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-11T03:22:13.655 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.1 2024-09-11T03:22:13.878 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:13 smithi050 systemd[1]: Stopping Ceph osd.1 for ff8a8a62-6feb-11ef-bcea-c7b262605968... 2024-09-11T03:22:14.378 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:13 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1[44769]: 2024-09-11T03:22:13.971+0000 7fb85525f640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.1 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-11T03:22:14.378 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:13 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1[44769]: 2024-09-11T03:22:13.971+0000 7fb85525f640 -1 osd.1 47 *** Got signal Terminated *** 2024-09-11T03:22:14.378 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:13 smithi050 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1[44769]: 2024-09-11T03:22:13.971+0000 7fb85525f640 -1 osd.1 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-11T03:22:19.706 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:19 smithi050 podman[54402]: 2024-09-11 03:22:19.450282711 +0000 UTC m=+5.596069514 container died fe46b707ee50c09456214d1247f9c752694524951f2c462d1a29706eb6298e10 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, GIT_CLEAN=True, org.label-schema.build-date=20240731) 2024-09-11T03:22:19.973 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:19 smithi050 podman[54402]: 2024-09-11 03:22:19.806491853 +0000 UTC m=+5.952278658 container cleanup fe46b707ee50c09456214d1247f9c752694524951f2c462d1a29706eb6298e10 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-11T03:22:19.974 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:19 smithi050 bash[54402]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1 2024-09-11T03:22:20.310 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:19 smithi050 podman[54675]: 2024-09-11 03:22:19.974127913 +0000 UTC m=+0.595801301 container remove fe46b707ee50c09456214d1247f9c752694524951f2c462d1a29706eb6298e10 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, ceph=True, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=) 2024-09-11T03:22:21.055 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:20 smithi050 podman[54828]: 2024-09-11 03:22:20.602937787 +0000 UTC m=+0.018014504 image pull 589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e 2024-09-11T03:22:21.055 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:20 smithi050 podman[54828]: 2024-09-11 03:22:20.719722552 +0000 UTC m=+0.134799270 container create e9cc1f15413ba0fe8335aeca0da56662a1abc81f3048cacf16a703ce74823e4d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1-deactivate, CEPH_POINT_RELEASE=, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, ceph=True, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS) 2024-09-11T03:22:21.055 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:21 smithi050 podman[54828]: 2024-09-11 03:22:21.056030758 +0000 UTC m=+0.471107478 container init e9cc1f15413ba0fe8335aeca0da56662a1abc81f3048cacf16a703ce74823e4d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, ceph=True, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, io.buildah.version=1.37.2) 2024-09-11T03:22:21.378 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:21 smithi050 podman[54828]: 2024-09-11 03:22:21.060981697 +0000 UTC m=+0.476058415 container start e9cc1f15413ba0fe8335aeca0da56662a1abc81f3048cacf16a703ce74823e4d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, ceph=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-11T03:22:21.378 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:21 smithi050 podman[54828]: 2024-09-11 03:22:21.130993826 +0000 UTC m=+0.546070544 container attach e9cc1f15413ba0fe8335aeca0da56662a1abc81f3048cacf16a703ce74823e4d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1-deactivate, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.schema-version=1.0, ceph=True, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731) 2024-09-11T03:22:21.877 INFO:journalctl@ceph.osd.1.smithi050.stdout:Sep 11 03:22:21 smithi050 podman[54828]: 2024-09-11 03:22:21.587325977 +0000 UTC m=+1.002402694 container died e9cc1f15413ba0fe8335aeca0da56662a1abc81f3048cacf16a703ce74823e4d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-1-deactivate, GIT_CLEAN=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731) 2024-09-11T03:22:22.177 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.1.service' 2024-09-11T03:22:22.222 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T03:22:22.223 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-11T03:22:22.223 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-11T03:22:22.223 DEBUG:teuthology.orchestra.run.smithi120:> sudo systemctl stop ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.2 2024-09-11T03:22:22.509 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:22 smithi120 systemd[1]: Stopping Ceph osd.2 for ff8a8a62-6feb-11ef-bcea-c7b262605968... 2024-09-11T03:22:22.873 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:22 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2[37377]: 2024-09-11T03:22:22.508+0000 7f4af9073640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.2 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-11T03:22:22.873 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:22 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2[37377]: 2024-09-11T03:22:22.508+0000 7f4af9073640 -1 osd.2 47 *** Got signal Terminated *** 2024-09-11T03:22:22.874 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:22 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2[37377]: 2024-09-11T03:22:22.508+0000 7f4af9073640 -1 osd.2 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-11T03:22:28.373 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:28 smithi120 podman[46382]: 2024-09-11 03:22:28.029615667 +0000 UTC m=+5.613712025 container died 843140a34734112390160698cba0554985407ff6bbef1b182af2600be20f3b93 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2, ceph=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_CLEAN=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD) 2024-09-11T03:22:28.741 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:28 smithi120 podman[46382]: 2024-09-11 03:22:28.465374379 +0000 UTC m=+6.049470781 container cleanup 843140a34734112390160698cba0554985407ff6bbef1b182af2600be20f3b93 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, ceph=True, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4) 2024-09-11T03:22:28.741 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:28 smithi120 bash[46382]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2 2024-09-11T03:22:28.741 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:28 smithi120 podman[46403]: 2024-09-11 03:22:28.650020496 +0000 UTC m=+0.617230625 container remove 843140a34734112390160698cba0554985407ff6bbef1b182af2600be20f3b93 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=) 2024-09-11T03:22:29.374 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:29 smithi120 podman[46604]: 2024-09-11 03:22:29.084237143 +0000 UTC m=+0.105271394 container create 411ca9ce1d8fa0a21dafaba6d577d231779731af61ab1f64795ef4b6b52572f0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2-deactivate, ceph=True, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731) 2024-09-11T03:22:29.374 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:29 smithi120 podman[46604]: 2024-09-11 03:22:28.99451778 +0000 UTC m=+0.015552041 image pull 589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e 2024-09-11T03:22:29.374 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:29 smithi120 podman[46604]: 2024-09-11 03:22:29.28698489 +0000 UTC m=+0.308019149 container init 411ca9ce1d8fa0a21dafaba6d577d231779731af61ab1f64795ef4b6b52572f0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, ceph=True, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, io.buildah.version=1.37.2) 2024-09-11T03:22:29.374 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:29 smithi120 podman[46604]: 2024-09-11 03:22:29.291696442 +0000 UTC m=+0.312730694 container start 411ca9ce1d8fa0a21dafaba6d577d231779731af61ab1f64795ef4b6b52572f0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2-deactivate, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-11T03:22:29.772 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:29 smithi120 podman[46604]: 2024-09-11 03:22:29.41180287 +0000 UTC m=+0.432837121 container attach 411ca9ce1d8fa0a21dafaba6d577d231779731af61ab1f64795ef4b6b52572f0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, ceph=True) 2024-09-11T03:22:29.773 INFO:journalctl@ceph.osd.2.smithi120.stdout:Sep 11 03:22:29 smithi120 podman[46604]: 2024-09-11 03:22:29.478965623 +0000 UTC m=+0.499999879 container died 411ca9ce1d8fa0a21dafaba6d577d231779731af61ab1f64795ef4b6b52572f0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-2-deactivate, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, ceph=True, org.label-schema.schema-version=1.0) 2024-09-11T03:22:30.039 DEBUG:teuthology.orchestra.run.smithi120:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.2.service' 2024-09-11T03:22:30.075 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T03:22:30.076 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-11T03:22:30.076 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-11T03:22:30.076 DEBUG:teuthology.orchestra.run.smithi120:> sudo systemctl stop ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.3 2024-09-11T03:22:30.373 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:30 smithi120 systemd[1]: Stopping Ceph osd.3 for ff8a8a62-6feb-11ef-bcea-c7b262605968... 2024-09-11T03:22:30.873 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:30 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3[41126]: 2024-09-11T03:22:30.411+0000 7f883374c640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.3 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-11T03:22:30.874 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:30 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3[41126]: 2024-09-11T03:22:30.411+0000 7f883374c640 -1 osd.3 47 *** Got signal Terminated *** 2024-09-11T03:22:30.874 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:30 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3[41126]: 2024-09-11T03:22:30.411+0000 7f883374c640 -1 osd.3 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-11T03:22:32.079 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:31 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3[41126]: 2024-09-11T03:22:31.745+0000 7f882fd61640 -1 osd.3 47 heartbeat_check: no reply from 172.21.15.50:6806 osd.0 since back 2024-09-11T03:22:10.466203+0000 front 2024-09-11T03:22:10.466258+0000 (oldest deadline 2024-09-11T03:22:31.566078+0000) 2024-09-11T03:22:33.123 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:32 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3[41126]: 2024-09-11T03:22:32.732+0000 7f882fd61640 -1 osd.3 47 heartbeat_check: no reply from 172.21.15.50:6806 osd.0 since back 2024-09-11T03:22:10.466203+0000 front 2024-09-11T03:22:10.466258+0000 (oldest deadline 2024-09-11T03:22:31.566078+0000) 2024-09-11T03:22:33.813 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:33 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3[41126]: 2024-09-11T03:22:33.729+0000 7f882fd61640 -1 osd.3 47 heartbeat_check: no reply from 172.21.15.50:6806 osd.0 since back 2024-09-11T03:22:10.466203+0000 front 2024-09-11T03:22:10.466258+0000 (oldest deadline 2024-09-11T03:22:31.566078+0000) 2024-09-11T03:22:35.124 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:34 smithi120 ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3[41126]: 2024-09-11T03:22:34.750+0000 7f882fd61640 -1 osd.3 47 heartbeat_check: no reply from 172.21.15.50:6806 osd.0 since back 2024-09-11T03:22:10.466203+0000 front 2024-09-11T03:22:10.466258+0000 (oldest deadline 2024-09-11T03:22:31.566078+0000) 2024-09-11T03:22:36.060 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:35 smithi120 podman[46795]: 2024-09-11 03:22:35.784287669 +0000 UTC m=+5.484966793 container died db35831d43a9a633e5125c9be81a0aaf6ba17f8a9b1edbeb6a9776ed6921ffca (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3, org.label-schema.build-date=20240731, ceph=True, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, io.buildah.version=1.37.2) 2024-09-11T03:22:36.374 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:36 smithi120 podman[46795]: 2024-09-11 03:22:36.201344679 +0000 UTC m=+5.902023801 container cleanup db35831d43a9a633e5125c9be81a0aaf6ba17f8a9b1edbeb6a9776ed6921ffca (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3, org.label-schema.license=GPLv2, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, GIT_BRANCH=HEAD, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=) 2024-09-11T03:22:36.374 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:36 smithi120 bash[46795]: ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3 2024-09-11T03:22:36.802 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:36 smithi120 podman[47102]: 2024-09-11 03:22:36.402497027 +0000 UTC m=+0.610880723 container remove db35831d43a9a633e5125c9be81a0aaf6ba17f8a9b1edbeb6a9776ed6921ffca (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux ) 2024-09-11T03:22:37.097 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:36 smithi120 podman[47195]: 2024-09-11 03:22:36.803256917 +0000 UTC m=+0.107489374 container create b0de1f323fde42e30a061622b17da809072be311a45564d88007cbc34fe13d56 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3-deactivate, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_CLEAN=True, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4) 2024-09-11T03:22:37.097 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:36 smithi120 podman[47195]: 2024-09-11 03:22:36.71159166 +0000 UTC m=+0.015824091 image pull 589dd18248e494ba411dc838aa4ae0e5e569213f08fcd7a2cf22cd3ef7e3c480 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e 2024-09-11T03:22:37.097 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:37 smithi120 podman[47195]: 2024-09-11 03:22:37.00578414 +0000 UTC m=+0.310016567 container init b0de1f323fde42e30a061622b17da809072be311a45564d88007cbc34fe13d56 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3-deactivate, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, ceph=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=) 2024-09-11T03:22:37.097 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:37 smithi120 podman[47195]: 2024-09-11 03:22:37.01063149 +0000 UTC m=+0.314863911 container start b0de1f323fde42e30a061622b17da809072be311a45564d88007cbc34fe13d56 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3-deactivate, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, ceph=True, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0) 2024-09-11T03:22:37.097 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:37 smithi120 podman[47195]: 2024-09-11 03:22:37.097400333 +0000 UTC m=+0.401632766 container attach b0de1f323fde42e30a061622b17da809072be311a45564d88007cbc34fe13d56 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3-deactivate, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, CEPH_POINT_RELEASE=) 2024-09-11T03:22:37.374 INFO:journalctl@ceph.osd.3.smithi120.stdout:Sep 11 03:22:37 smithi120 podman[47195]: 2024-09-11 03:22:37.198357271 +0000 UTC m=+0.502589700 container died b0de1f323fde42e30a061622b17da809072be311a45564d88007cbc34fe13d56 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:15494b9bca13f9d7088cd5c92cad00398197153ea02321fd69a7c31aa379887e, name=ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968-osd-3-deactivate, org.label-schema.vendor=CentOS, RELEASE=wip-hemanth-testing-2024-09-10-0723-8f219c4, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, ceph=True, GIT_CLEAN=True) 2024-09-11T03:22:37.870 DEBUG:teuthology.orchestra.run.smithi120:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.3.service' 2024-09-11T03:22:37.913 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T03:22:37.913 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-11T03:22:37.913 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-11T03:22:37.914 DEBUG:teuthology.orchestra.run.smithi165:> sudo systemctl stop ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.4 2024-09-11T03:22:37.959 DEBUG:teuthology.orchestra.run.smithi165:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.4.service' 2024-09-11T03:22:38.036 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T03:22:38.036 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-11T03:22:38.037 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-11T03:22:38.037 DEBUG:teuthology.orchestra.run.smithi165:> sudo systemctl stop ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.5 2024-09-11T03:22:38.115 DEBUG:teuthology.orchestra.run.smithi165:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ff8a8a62-6feb-11ef-bcea-c7b262605968@osd.5.service' 2024-09-11T03:22:38.189 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T03:22:38.189 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-11T03:22:38.189 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 --force --keep-logs 2024-09-11T03:22:38.404 INFO:teuthology.orchestra.run.smithi050.stdout:Deleting cluster with fsid: ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:22:40.767 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 --force --keep-logs 2024-09-11T03:22:40.969 INFO:teuthology.orchestra.run.smithi120.stdout:Deleting cluster with fsid: ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:22:42.491 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 --force --keep-logs 2024-09-11T03:22:42.691 INFO:teuthology.orchestra.run.smithi165.stdout:Deleting cluster with fsid: ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:22:43.191 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T03:22:43.225 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T03:22:43.254 DEBUG:teuthology.orchestra.run.smithi165:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T03:22:43.280 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-11T03:22:43.283 DEBUG:teuthology.misc:Transferring archived files from smithi050:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/crash to /home/teuthworker/archive/hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi/7900035/remote/smithi050/crash 2024-09-11T03:22:43.283 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/crash -- . 2024-09-11T03:22:43.325 INFO:teuthology.orchestra.run.smithi050.stderr:tar: /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/crash: Cannot open: No such file or directory 2024-09-11T03:22:43.325 INFO:teuthology.orchestra.run.smithi050.stderr:tar: Error is not recoverable: exiting now 2024-09-11T03:22:43.327 DEBUG:teuthology.misc:Transferring archived files from smithi120:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/crash to /home/teuthworker/archive/hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi/7900035/remote/smithi120/crash 2024-09-11T03:22:43.327 DEBUG:teuthology.orchestra.run.smithi120:> sudo tar c -f - -C /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/crash -- . 2024-09-11T03:22:43.361 INFO:teuthology.orchestra.run.smithi120.stderr:tar: /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/crash: Cannot open: No such file or directory 2024-09-11T03:22:43.361 INFO:teuthology.orchestra.run.smithi120.stderr:tar: Error is not recoverable: exiting now 2024-09-11T03:22:43.362 DEBUG:teuthology.misc:Transferring archived files from smithi165:/var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/crash to /home/teuthworker/archive/hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi/7900035/remote/smithi165/crash 2024-09-11T03:22:43.362 DEBUG:teuthology.orchestra.run.smithi165:> sudo tar c -f - -C /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/crash -- . 2024-09-11T03:22:43.401 INFO:teuthology.orchestra.run.smithi165.stderr:tar: /var/lib/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/crash: Cannot open: No such file or directory 2024-09-11T03:22:43.401 INFO:teuthology.orchestra.run.smithi165.stderr:tar: Error is not recoverable: exiting now 2024-09-11T03:22:43.402 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-11T03:22:43.402 DEBUG:teuthology.orchestra.run.smithi050:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | egrep -v CEPHADM_STRAY_HOST | egrep -v CEPHADM_STRAY_DAEMON | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-11T03:22:43.437 INFO:tasks.cephadm:Compressing logs... 2024-09-11T03:22:43.437 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-09-11T03:22:43.480 DEBUG:teuthology.orchestra.run.smithi120:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-11T03:22:43.482 DEBUG:teuthology.orchestra.run.smithi165:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-11T03:22:43.506 INFO:teuthology.orchestra.run.smithi120.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-volume.log 2024-09-11T03:22:43.507 INFO:teuthology.orchestra.run.smithi120.stderr:: No such file or directory 2024-09-11T03:22:43.507 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mgr.b.log 2024-09-11T03:22:43.507 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.audit.log 2024-09-11T03:22:43.507 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.cephadm.log 2024-09-11T03:22:43.515 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.2.log 2024-09-11T03:22:43.515 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.log 2024-09-11T03:22:43.515 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.cephadm.log: /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.2.log: gzip 82.3% -5 -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.cephadm.log.gz --verbose 2024-09-11T03:22:43.515 INFO:teuthology.orchestra.run.smithi120.stderr: -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mon.b.log 2024-09-11T03:22:43.515 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.3.log 2024-09-11T03:22:43.515 INFO:teuthology.orchestra.run.smithi120.stderr: 90.4% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.audit.log.gz 2024-09-11T03:22:43.516 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mon.b.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-11T03:22:43.516 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.3.log: 85.8% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.log.gz 2024-09-11T03:22:43.516 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/cephadm.log: 90.3% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mgr.b.log.gz 2024-09-11T03:22:43.516 INFO:teuthology.orchestra.run.smithi120.stderr: 83.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-11T03:22:43.517 INFO:teuthology.orchestra.run.smithi165.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-volume.log 2024-09-11T03:22:43.517 INFO:teuthology.orchestra.run.smithi165.stderr:: No such file or directory 2024-09-11T03:22:43.518 INFO:teuthology.orchestra.run.smithi165.stderr:gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.4.log 2024-09-11T03:22:43.518 INFO:teuthology.orchestra.run.smithi165.stderr:gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.audit.log 2024-09-11T03:22:43.518 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-volume.log: /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mon.c.log 2024-09-11T03:22:43.518 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.cephadm.log 2024-09-11T03:22:43.518 INFO:teuthology.orchestra.run.smithi165.stderr:gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.5.log 2024-09-11T03:22:43.518 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mon.c.log: /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.log 2024-09-11T03:22:43.518 INFO:teuthology.orchestra.run.smithi165.stderr: 79.1% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.cephadm.log.gz 2024-09-11T03:22:43.518 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-11T03:22:43.518 INFO:teuthology.orchestra.run.smithi165.stderr: 90.5% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.audit.log.gz 2024-09-11T03:22:43.518 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.log: /var/log/ceph/cephadm.log: 85.5% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.log.gz 2024-09-11T03:22:43.519 INFO:teuthology.orchestra.run.smithi165.stderr: 83.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-11T03:22:43.519 INFO:teuthology.orchestra.run.smithi050.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-09-11T03:22:43.519 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.0.log 2024-09-11T03:22:43.519 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.1.log 2024-09-11T03:22:43.519 INFO:teuthology.orchestra.run.smithi050.stderr:gzip/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.0.log: -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mgr.a.log 2024-09-11T03:22:43.519 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-volume.log 2024-09-11T03:22:43.519 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mgr.a.log: gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.audit.log 2024-09-11T03:22:43.519 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.cephadm.log 2024-09-11T03:22:43.519 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mon.a.log 2024-09-11T03:22:43.519 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.log 2024-09-11T03:22:43.519 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mon.a.log: 82.8% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.cephadm.log.gz 2024-09-11T03:22:43.519 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-11T03:22:43.519 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.log: /var/log/ceph/cephadm.log: 90.3% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.audit.log.gz 2024-09-11T03:22:43.520 INFO:teuthology.orchestra.run.smithi050.stderr: 86.1% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph.log.gz 2024-09-11T03:22:43.520 INFO:teuthology.orchestra.run.smithi050.stderr: 84.6% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-11T03:22:43.520 INFO:teuthology.orchestra.run.smithi120.stderr: 91.5% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-volume.log.gz 2024-09-11T03:22:43.523 INFO:teuthology.orchestra.run.smithi050.stderr: 91.4% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-volume.log.gz 2024-09-11T03:22:43.524 INFO:teuthology.orchestra.run.smithi165.stderr: 91.5% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-volume.log.gz 2024-09-11T03:22:43.531 INFO:teuthology.orchestra.run.smithi165.stderr: 92.8% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.5.log.gz 2024-09-11T03:22:43.534 INFO:teuthology.orchestra.run.smithi165.stderr: 92.9% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.4.log.gz 2024-09-11T03:22:43.542 INFO:teuthology.orchestra.run.smithi050.stderr: 93.3% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.1.log.gz 2024-09-11T03:22:43.547 INFO:teuthology.orchestra.run.smithi050.stderr: 93.1% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.0.log.gz 2024-09-11T03:22:43.549 INFO:teuthology.orchestra.run.smithi120.stderr: 92.9% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.3.log.gz 2024-09-11T03:22:43.571 INFO:teuthology.orchestra.run.smithi165.stderr: 92.7% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mon.c.log.gz 2024-09-11T03:22:43.573 INFO:teuthology.orchestra.run.smithi165.stderr: 2024-09-11T03:22:43.573 INFO:teuthology.orchestra.run.smithi165.stderr:real 0m0.076s 2024-09-11T03:22:43.573 INFO:teuthology.orchestra.run.smithi165.stderr:user 0m0.139s 2024-09-11T03:22:43.573 INFO:teuthology.orchestra.run.smithi165.stderr:sys 0m0.020s 2024-09-11T03:22:43.574 INFO:teuthology.orchestra.run.smithi120.stderr: 93.3% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-osd.2.log.gz 2024-09-11T03:22:43.589 INFO:teuthology.orchestra.run.smithi120.stderr: 92.4% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mon.b.log.gz 2024-09-11T03:22:43.591 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-09-11T03:22:43.591 INFO:teuthology.orchestra.run.smithi120.stderr:real 0m0.095s 2024-09-11T03:22:43.591 INFO:teuthology.orchestra.run.smithi120.stderr:user 0m0.213s 2024-09-11T03:22:43.591 INFO:teuthology.orchestra.run.smithi120.stderr:sys 0m0.024s 2024-09-11T03:22:43.609 INFO:teuthology.orchestra.run.smithi050.stderr: 87.7% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mgr.a.log.gz 2024-09-11T03:22:43.764 INFO:teuthology.orchestra.run.smithi050.stderr: 91.3% -- replaced with /var/log/ceph/ff8a8a62-6feb-11ef-bcea-c7b262605968/ceph-mon.a.log.gz 2024-09-11T03:22:43.767 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-11T03:22:43.768 INFO:teuthology.orchestra.run.smithi050.stderr:real 0m0.271s 2024-09-11T03:22:43.768 INFO:teuthology.orchestra.run.smithi050.stderr:user 0m0.447s 2024-09-11T03:22:43.768 INFO:teuthology.orchestra.run.smithi050.stderr:sys 0m0.036s 2024-09-11T03:22:43.768 INFO:tasks.cephadm:Archiving logs... 2024-09-11T03:22:43.768 DEBUG:teuthology.misc:Transferring archived files from smithi050:/var/log/ceph to /home/teuthworker/archive/hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi/7900035/remote/smithi050/log 2024-09-11T03:22:43.769 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-11T03:22:43.911 DEBUG:teuthology.misc:Transferring archived files from smithi120:/var/log/ceph to /home/teuthworker/archive/hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi/7900035/remote/smithi120/log 2024-09-11T03:22:43.912 DEBUG:teuthology.orchestra.run.smithi120:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-11T03:22:43.971 DEBUG:teuthology.misc:Transferring archived files from smithi165:/var/log/ceph to /home/teuthworker/archive/hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi/7900035/remote/smithi165/log 2024-09-11T03:22:43.971 DEBUG:teuthology.orchestra.run.smithi165:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-11T03:22:44.016 INFO:tasks.cephadm:Removing cluster... 2024-09-11T03:22:44.016 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 --force 2024-09-11T03:22:44.216 INFO:teuthology.orchestra.run.smithi050.stdout:Deleting cluster with fsid: ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:22:44.478 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 --force 2024-09-11T03:22:44.668 INFO:teuthology.orchestra.run.smithi120.stdout:Deleting cluster with fsid: ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:22:44.924 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ff8a8a62-6feb-11ef-bcea-c7b262605968 --force 2024-09-11T03:22:45.127 INFO:teuthology.orchestra.run.smithi165.stdout:Deleting cluster with fsid: ff8a8a62-6feb-11ef-bcea-c7b262605968 2024-09-11T03:22:45.376 INFO:tasks.cephadm:Removing cephadm ... 2024-09-11T03:22:45.376 DEBUG:teuthology.orchestra.run.smithi050:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-11T03:22:45.396 DEBUG:teuthology.orchestra.run.smithi120:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-11T03:22:45.413 DEBUG:teuthology.orchestra.run.smithi165:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-11T03:22:45.429 INFO:tasks.cephadm:Teardown complete 2024-09-11T03:22:45.429 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-11T03:22:45.443 INFO:teuthology.task.install.util:Removing shipped files: /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer... 2024-09-11T03:22:45.443 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-09-11T03:22:45.446 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-11T03:22:45.455 DEBUG:teuthology.orchestra.run.smithi165:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-11T03:22:45.589 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-11T03:22:45.598 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-11T03:22:45.599 DEBUG:teuthology.orchestra.run.smithi050:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T03:22:45.601 DEBUG:teuthology.orchestra.run.smithi120:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T03:22:45.604 DEBUG:teuthology.orchestra.run.smithi165:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T03:22:45.616 INFO:teuthology.orchestra.run.smithi120.stderr:bash: line 1: ntpq: command not found 2024-09-11T03:22:45.617 INFO:teuthology.orchestra.run.smithi050.stderr:bash: line 1: ntpq: command not found 2024-09-11T03:22:45.618 INFO:teuthology.orchestra.run.smithi165.stderr:bash: line 1: ntpq: command not found 2024-09-11T03:22:45.620 INFO:teuthology.orchestra.run.smithi120.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-11T03:22:45.620 INFO:teuthology.orchestra.run.smithi120.stdout:=============================================================================== 2024-09-11T03:22:45.620 INFO:teuthology.orchestra.run.smithi120.stdout:^* hv01.front.sepia.ceph.com 3 6 377 46 +1211us[+1198us] +/- 55ms 2024-09-11T03:22:45.620 INFO:teuthology.orchestra.run.smithi120.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 47 -263us[ -276us] +/- 62ms 2024-09-11T03:22:45.620 INFO:teuthology.orchestra.run.smithi120.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 46 -1299us[-1312us] +/- 71ms 2024-09-11T03:22:45.620 INFO:teuthology.orchestra.run.smithi120.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:22:45.622 INFO:teuthology.orchestra.run.smithi050.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-11T03:22:45.622 INFO:teuthology.orchestra.run.smithi050.stdout:=============================================================================== 2024-09-11T03:22:45.622 INFO:teuthology.orchestra.run.smithi050.stdout:^* hv01.front.sepia.ceph.com 3 6 377 47 +1172us[+1145us] +/- 55ms 2024-09-11T03:22:45.622 INFO:teuthology.orchestra.run.smithi050.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 47 -304us[ -331us] +/- 62ms 2024-09-11T03:22:45.622 INFO:teuthology.orchestra.run.smithi050.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 48 -1360us[-1386us] +/- 71ms 2024-09-11T03:22:45.622 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:22:45.623 INFO:teuthology.orchestra.run.smithi165.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-11T03:22:45.624 INFO:teuthology.orchestra.run.smithi165.stdout:=============================================================================== 2024-09-11T03:22:45.624 INFO:teuthology.orchestra.run.smithi165.stdout:^* hv01.front.sepia.ceph.com 3 6 377 46 +1188us[+1180us] +/- 56ms 2024-09-11T03:22:45.624 INFO:teuthology.orchestra.run.smithi165.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 47 -282us[ -290us] +/- 62ms 2024-09-11T03:22:45.624 INFO:teuthology.orchestra.run.smithi165.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 46 -1336us[-1344us] +/- 71ms 2024-09-11T03:22:45.624 INFO:teuthology.orchestra.run.smithi165.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T03:22:45.624 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-11T03:22:45.633 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-11T03:22:45.633 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-11T03:22:45.644 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-09-11T03:22:45.745 DEBUG:teuthology.orchestra.run.smithi120:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-09-11T03:22:45.813 DEBUG:teuthology.orchestra.run.smithi165:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-09-11T03:22:45.880 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 context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-09-11T03:22:45.910 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T03:22:45.911 DEBUG:teuthology.orchestra.run.smithi120:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-09-11T03:22:45.938 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T03:22:45.939 DEBUG:teuthology.orchestra.run.smithi165:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-09-11T03:22:45.966 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T03:22:45.966 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-11T03:22:45.977 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-11T03:22:46.013 INFO:teuthology.task.internal:Duration was 1068.278357 seconds 2024-09-11T03:22:46.013 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-11T03:22:46.092 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-11T03:22:46.092 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-11T03:22:46.095 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-11T03:22:46.097 DEBUG:teuthology.orchestra.run.smithi165:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-11T03:22:46.134 INFO:teuthology.orchestra.run.smithi120.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-11T03:22:46.134 INFO:teuthology.orchestra.run.smithi050.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-11T03:22:46.136 INFO:teuthology.orchestra.run.smithi165.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-11T03:22:46.466 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-11T03:22:46.466 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi050.front.sepia.ceph.com 2024-09-11T03:22:46.466 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-09-11T03:22:46.488 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi120.front.sepia.ceph.com 2024-09-11T03:22:46.489 DEBUG:teuthology.orchestra.run.smithi120:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-11T03:22:46.517 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi165.front.sepia.ceph.com 2024-09-11T03:22:46.518 DEBUG:teuthology.orchestra.run.smithi165:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-11T03:22:46.541 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-11T03:22:46.541 DEBUG:teuthology.orchestra.run.smithi050:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-11T03:22:46.544 DEBUG:teuthology.orchestra.run.smithi120:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-11T03:22:46.560 DEBUG:teuthology.orchestra.run.smithi165:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-11T03:22:46.608 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-11T03:22:46.608 DEBUG:teuthology.orchestra.run.smithi050:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-11T03:22:46.611 DEBUG:teuthology.orchestra.run.smithi120:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-11T03:22:46.627 DEBUG:teuthology.orchestra.run.smithi165:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-11T03:22:46.798 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-11T03:22:46.807 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-11T03:22:46.807 DEBUG:teuthology.orchestra.run.smithi050:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-11T03:22:46.833 DEBUG:teuthology.orchestra.run.smithi120:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-11T03:22:46.857 DEBUG:teuthology.orchestra.run.smithi165:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-11T03:22:46.883 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-11T03:22:46.892 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-09-11T03:22:46.894 DEBUG:teuthology.orchestra.run.smithi120:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-11T03:22:46.900 DEBUG:teuthology.orchestra.run.smithi165:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-11T03:22:46.916 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern = core 2024-09-11T03:22:46.921 INFO:teuthology.orchestra.run.smithi120.stdout:kernel.core_pattern = core 2024-09-11T03:22:46.946 INFO:teuthology.orchestra.run.smithi165.stdout:kernel.core_pattern = core 2024-09-11T03:22:46.977 DEBUG:teuthology.orchestra.run.smithi050:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-11T03:22:47.007 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T03:22:47.008 DEBUG:teuthology.orchestra.run.smithi120:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-11T03:22:47.021 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T03:22:47.022 DEBUG:teuthology.orchestra.run.smithi165:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-11T03:22:47.036 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T03:22:47.036 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-11T03:22:47.046 INFO:teuthology.task.internal:Transferring archived files... 2024-09-11T03:22:47.047 DEBUG:teuthology.misc:Transferring archived files from smithi050:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi/7900035/remote/smithi050 2024-09-11T03:22:47.047 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-11T03:22:47.085 DEBUG:teuthology.misc:Transferring archived files from smithi120:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi/7900035/remote/smithi120 2024-09-11T03:22:47.085 DEBUG:teuthology.orchestra.run.smithi120:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-11T03:22:47.120 DEBUG:teuthology.misc:Transferring archived files from smithi165:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/hyelloji-2024-09-10_17:16:14-rados-wip-hemanth-testing-2024-09-10-0723-distro-default-smithi/7900035/remote/smithi165 2024-09-11T03:22:47.120 DEBUG:teuthology.orchestra.run.smithi165:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-11T03:22:47.155 INFO:teuthology.task.internal:Removing archive directory... 2024-09-11T03:22:47.155 DEBUG:teuthology.orchestra.run.smithi050:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-11T03:22:47.157 DEBUG:teuthology.orchestra.run.smithi120:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-11T03:22:47.160 DEBUG:teuthology.orchestra.run.smithi165:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-11T03:22:47.205 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-11T03:22:47.217 INFO:teuthology.task.internal:Not uploading archives. 2024-09-11T03:22:47.217 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-11T03:22:47.228 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-11T03:22:47.228 DEBUG:teuthology.orchestra.run.smithi050:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-11T03:22:47.231 DEBUG:teuthology.orchestra.run.smithi120:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-11T03:22:47.233 DEBUG:teuthology.orchestra.run.smithi165:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-11T03:22:47.243 INFO:teuthology.orchestra.run.smithi050.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 11 03:22 /home/ubuntu/cephtest 2024-09-11T03:22:47.245 INFO:teuthology.orchestra.run.smithi120.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 11 03:22 /home/ubuntu/cephtest 2024-09-11T03:22:47.261 INFO:teuthology.orchestra.run.smithi165.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 11 03:22 /home/ubuntu/cephtest 2024-09-11T03:22:47.262 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-11T03:22:47.272 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-11T03:22:47.298 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/centos_9.stream_runc agent/on mon_election/connectivity task/test_host_drain} duration: 1068.2783570289612 flavor: default owner: scheduled_hyelloji@teuthology success: true 2024-09-11T03:22:47.298 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-11T03:22:47.390 INFO:teuthology.run:pass